91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

临清市| 阜城县| 襄城县| 兰坪| 廉江市| 布拖县| 松滋市| 西平县| 包头市| 清新县| 湖州市| 噶尔县| 磐安县| 施秉县| 固阳县| 永城市| 于田县| 灌南县| 洞口县| 长顺县| 刚察县| 石泉县| 泊头市| 交口县| 永清县| 区。| 开远市| 彭山县| 贡觉县| 华蓥市| 商河县| 闸北区| 灵石县| 文昌市| 兰溪市| 青河县| 新津县| 呼和浩特市| 杭锦旗| 礼泉县| 北辰区|