中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

静海县| 天台县| 宕昌县| 北票市| 南乐县| 高碑店市| 北辰区| 阜城县| 昌吉市| 裕民县| 江川县| 新干县| 唐山市| 富源县| 包头市| 平远县| 兴隆县| 泰和县| 花垣县| 精河县| 环江| 福海县| 南陵县| 新宁县| 仁布县| 阿克苏市| 沽源县| 康平县| 探索| 榆中县| 新乐市| 开原市| 绥德县| 龙川县| 桂平市| 偃师市| 邮箱| 云南省| 白山市| 台中县| 横峰县|