各種Adapter的用法(適配器)
創(chuàng)新互聯(lián)專注于網(wǎng)站設計、成都網(wǎng)站建設、網(wǎng)頁設計、網(wǎng)站制作、網(wǎng)站開發(fā)。公司秉持“客戶至上,用心服務”的宗旨,從客戶的利益和觀點出發(fā),讓客戶在網(wǎng)絡營銷中找到自己的駐足之地。尊重和關(guān)懷每一位客戶,用嚴謹?shù)膽B(tài)度對待客戶,用專業(yè)的服務創(chuàng)造價值,成為客戶值得信賴的朋友,為客戶解除后顧之憂。
*同樣是一個ListView,可以用不同的Adapter讓它顯示出來,比如說最常用的ArrayAdapter, SimpleAdapter,BaseAdapter.
android.widget.ArrayAdapterA concrete BaseAdapter that is backed by an array of arbitrary objects. By default this class expects that the provided resource id references a single TextView. If you want to use a more complex layout, use the constructors that also takes a field id. That field id should reference a TextView in the larger layout resource. However the TextView is referenced, it will be filled with the toString() of each object in the array. You can add lists or arrays of custom objects. Override the toString() method of your objects to determine what text will be displayed for the item in the list. To use something other than TextViews for the array display, for instance, ImageViews, or to have some of data besides toString() results fill the views, override getView(int, View, ViewGroup) to return the type of view you want.
如何定義ArrayAdapter
錯誤實例:
package com.example.testandroidproject; import android.os.Bundle; import android.support.v7.app.ActionBarActivity; import android.widget.ArrayAdapter; public class MainActivity extends ActionBarActivity { private String[] ganlist = new String[]{"孫悟空","豬八戒","沙和尚"}; @Override protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); private ArrayAdapterarrayAdapter = new ArrayAdapter (MainActivity.this,android.R.layout.simple_list_item_1,ganlist); //這樣定義ArrayAdapter會出現(xiàn)紅色錯誤 } }
*****************************************************************************************************
Multiple markers at this line
- Illegal modifier for parameter arrayAdapter; only final is permitted
- Line breakpoint:MainActivity [line: 15] - onCreate(Bundle)
*****************************************************************************************************
正確實例:
package com.example.testandroidproject; import android.os.Bundle; import android.support.v7.app.ActionBarActivity; import android.widget.ArrayAdapter; public class MainActivity extends ActionBarActivity { private String[] ganlist = new String[]{"孫悟空","豬八戒","沙和尚"}; @Override protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); ArrayAdapterarrayAdapter = new ArrayAdapter (MainActivity.this,android.R.layout.simple_list_item_1,ganlist); //去掉private } }