亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android 學習--ListView 的使用(二)

發布時間:2020-05-12 23:10:41 來源:網絡 閱讀:216 作者:uncom2005 欄目:移動開發

 基于ArrayAdapter 創建ListView

程序清單


listview2.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent" android:layout_height="match_parent">

    <ListView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/list1"
        android:divider="#0f0"
        android:dividerHeight="3px"
        android:footerDividersEnabled="false"
         />
</LinearLayout>

MainActivity.java

package xiaocool.net.listviewtest;

import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.widget.ArrayAdapter;
import android.widget.ListView;


public class MainActivity extends ActionBarActivity {

   private ListView list;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.listview2);
        list=(ListView)this.findViewById(R.id.list1);
        //定義一個數組
        String arr[]={"校酷網絡1","校酷網絡2","校酷網絡3","校酷網絡4","校酷網絡5"};
        //將數組包裝成ArrayAdapter
        ArrayAdapter<String> adapter=new ArrayAdapter<String>(this,R.layout.array_item,R.id.textView,arr);
        list.setAdapter(adapter);

    }



}

array_item..xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent" android:layout_height="match_parent">

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/textView"
        android:textSize="20sp"
        android:textColor="#f0f"
        android:padding="20px"
        />
</LinearLayout>

Android 學習--ListView 的使用(二)

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

廉江市| 万宁市| 富宁县| 大石桥市| 嵊泗县| 漳浦县| 宁武县| 丰原市| 衡山县| 苏尼特右旗| 旬阳县| 来凤县| 黎城县| 长寿区| 葫芦岛市| 始兴县| 沙田区| 上犹县| 苍梧县| 肃南| 海门市| 大理市| 禄丰县| 石楼县| 东乌珠穆沁旗| 内黄县| 利津县| 乐安县| 新建县| 大丰市| 河北区| 文安县| 沙坪坝区| 金门县| 长治县| 余庆县| 化州市| 新宾| 南召县| 定兴县| 武陟县|