AndroidListView控件使用方法

ListView控件顯示列表有兩種方式,直接使用數(shù)組資源或者使用ArrayAdapter類,下面一個簡單的工程實現(xiàn)了這兩種方法。

玉溪網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián)建站,玉溪網(wǎng)站設(shè)計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為玉溪成百上千提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站建設(shè)公司要多少錢,請找那個售后服務(wù)好的玉溪做網(wǎng)站的公司定做!

ArrayAdapterList類:

public class ArrayAdapterList extends Activity 
{  
  @Override   
  protected void onCreate(Bundle savedInstanceState) 
  {   
    super.onCreate(savedInstanceState);   
    setContentView(R.layout.main);//關(guān)聯(lián)布局文件 
     
    ListView list2 = (ListView)findViewById(R.id.list2);//獲得界面上的列表視圖控件 
    //定義一個數(shù)組 
    String[] arr ={"易建聯(lián)","姚明","林書豪"}; 
    //將數(shù)組包裝ArrayAdapter 
    ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>( 
      this , android.R.layout.simple_list_item_1 , arr); 
    //為ListView設(shè)置Adapter 
    list2.setAdapter(arrayAdapter);  
     
  }  
} 

主界面定義兩個ListView:

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" > 
<!-- 直接使用數(shù)組資源給出列表項 --> 
    <ListView 
      android:layout_width="fill_parent" 
      android:layout_height="300dp" 
      android:divider="@drawable/blue" 
      android:entries="@array/books" 
      android:headerDividersEnabled="false" > 
    </ListView> 
     
<!-- 使用ArrayAdapter提供列表項的ListView --> 
  <ListView 
      android:id="@+id/list2" 
      android:layout_width="fill_parent" 
      android:layout_height="215dp" 
      android:divider="@drawable/green" > 
    </ListView> 
</LinearLayout> 

數(shù)組資源:

<resources> 
  <string-array name="books"> 
    <item>奧尼爾</item> 
    <item>鄧肯</item> 
    <item>羅賓遜</item> 
    <item>加內(nèi)特</item> 
  </string-array> 
</resources> 

配置文件,設(shè)置ArrayAdapterList為啟動activity:

<application android:icon="@drawable/icon" android:label="@string/app_name"> 
    <activity android:name="org.niit.listview.ArrayAdapterList" 
         android:label="@string/app_name"> 
      <intent-filter> 
        <action android:name="android.intent.action.MAIN" /> 
        <category android:name="android.intent.category.LAUNCHER" /> 
      </intent-filter> 
    </activity> 
 
  </application> 

運行效果:

Android ListView控件使用方法

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。

文章名稱:AndroidListView控件使用方法
文章源于:http://muchs.cn/article4/piojie.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站建設(shè)、品牌網(wǎng)站制作、網(wǎng)站收錄、ChatGPT、網(wǎng)站維護(hù)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

微信小程序開發(fā)