真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

androidlistview,androidlistview中怎么調(diào)用攝像頭

如何在Android中使用listview

創(chuàng)建繼承BaseAdapter并實現(xiàn)其抽象方法的類MyListViewAdapter

創(chuàng)新互聯(lián)公司是一家專注于網(wǎng)站建設、成都網(wǎng)站建設與策劃設計,滴道網(wǎng)站建設哪家好?創(chuàng)新互聯(lián)公司做網(wǎng)站,專注于網(wǎng)站建設十年,網(wǎng)設計領域的專業(yè)建站公司;建站業(yè)務涵蓋:滴道等地區(qū)。滴道做網(wǎng)站價格咨詢:13518219792

說明

下面的講解中,只創(chuàng)建自定義的適配器類,如何使用請參考android中常用控件的使用之ListView

1.創(chuàng)建類MyListViewAdapter

創(chuàng)建類MyListViewAdapter,該類繼承BaseAdapter,并實現(xiàn)其抽象方法:

1

2

3

4

int getCount();

Object getItem(int position);

long getItemId(int position);

View getView(int position,View convertView,ViewGroup parent);

getCount需要返回有多少個item,也就是說最會在listview中展示這么多行

getItem需要返回參數(shù)position位置的數(shù)據(jù)

getItemId返回position就行了

2.給MyListViewAdapter類添加成員變量和構造方法

兩個成員變量

1

2

ListString list;

Context context;

list表示要顯示的數(shù)據(jù),context變量在生成View對象時需要用到

構造方法:構造方法是為了給兩個成員變量賦值

1

2

3

4

public MyListViewAdapter(ListString list , Context context) {

this.list = list;

this.context = context;

}

3.給getCount,getItem,getItemId方法添加代碼

getCount需要返回有多少個item,也就是說最會在listview中展示這么多行,所以返回list.size

getItem需要返回參數(shù)position位置的數(shù)據(jù),也就是list中第position項的值list.get(position)

getItemId返回position就行了

1

2

3

4

5

6

7

8

9

10

11

12

13

14

@Override

public int getCount() {

return list.size();

}

@Override

public Object getItem(int position) {

return list.get(position);

}

@Override

public long getItemId(int position) {

return position;

}

4.給getView方法添加代碼

getView方法是返回位置為position的View對象,第二個參數(shù)convertView考慮到資源重用問題,在上下滑動的過程中,需要顯示某項的時候才會調(diào)用getView方法,而如果有某項被隱藏不顯示,就會把不顯示那一行的View作為convertView參數(shù)傳入,如果沒有某項被隱藏,convertView值為null??梢酝ㄟ^下面代碼中的if(convertView!=null)中的輸出來看哪一行被隱藏了。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

@Override

public View getView(int position, View convertView, ViewGroup parent) {

System.out.println("調(diào)用getView方法,顯示position="+position+"項");

if(convertView!=null){

TextView t = (TextView) convertView.findViewById(R.id.firstTextView);

System.out.println(t.getText());

}else{

LayoutInflater layoutInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

convertView = layoutInflater.inflate(R.layout.item_mylistviewadapter, null);

}

TextView t = (TextView)(convertView.findViewById(R.id.firstTextView));

t.setText(list.get(position));

if(position%2==0)

{

t.setBackgroundColor(Color.WHITE);

}

else{

t.setBackgroundColor(Color.GRAY);

}

return convertView;

}

補充:通過xml生成View對象

通過Context對象生成一個LayoutInflater對象

調(diào)用LayoutInflater對象的inflate方法生成控件對象,inflate方法的第一個參數(shù)為xml文件,第二個參數(shù)一般為null。返回值為該xml文件最外層的標簽對象。

1

2

LayoutInflater layoutInflater =(LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

LinearLayout convertView =(LinearLayout)layoutInflater.inflate(R.layout.item_mylistvie

源代碼下載

pan.baidu.com/s/1ntuQDdv

Android ListView常用屬性解析

beforeDescendants:viewgroup會優(yōu)先其子類控件而獲取到焦點

afterDescendants:viewgroup只有當其子類控件不需要獲取焦點時才獲取焦點

blocksDescendants:viewgroup會覆蓋子類控件而直接獲得焦點

android:drawSelectorOnTop="true" 點擊某一條記錄,顏色會顯示在最上面,記錄上的文字被遮住,所以點擊文字不放,文字就看不到

android:drawSelectorOnTop="false" 點擊某條記錄不放,顏色會在記錄的后面,成為背景色,但是記錄內(nèi)容的文字是可見的

fadingEdgeLength表示陰影部分的高度,requiresFadingEdge表示陰影的方向

android:fastScrollEnabled="true"

是讓ListView出現(xiàn)快速滾動的按鈕,比較少的item時候不會出現(xiàn),多了就會出現(xiàn)。不出現(xiàn)原因是數(shù)據(jù)不多的原因,只要數(shù)據(jù)足夠多,才會自動出現(xiàn)的。

android:footerDividersEnabled="true" 和android:headerDividersEnabled="true”對應。

api說明是:設成flase時,此ListView將不會在頁腳或者頭部視圖 前畫分隔符。此屬性缺省值為true。

這說明這個屬性只對頁腳或者頭部起作用,如果listview中沒有添加頁腳這個屬性就不起作用。

指示該列表總是在固定的單色、不透明的背景下繪制。這允許列表優(yōu)化其繪制過程

為真時,列表會使用更精確的基于條目在屏幕上的可見像素高度的計算方法。 默認該屬性為真,如果你的適配器需要繪制可變高的條目,他應該設為假。 當該屬性為真時,你在適配器在顯示變高條目時,滾動條的把手會在滾動的 過程中改變大小。當設為假時,列表只使用適配器中的條目數(shù)和屏幕上的 可見條目來決定滾動條的屬性

android listview怎么用

Android listview與adapter用法

listview與adapter用法

一個ListView通常有兩個職責。

(1)將數(shù)據(jù)填充到布局。

(2)處理用戶的選擇點擊等操作。

第一點很好理解,ListView就是實現(xiàn)這個功能的。第二點也不難做到,在后面的學習中讀者會發(fā)現(xiàn),這非常簡單。

一個ListView的創(chuàng)建需要3個元素。

(1)ListView中的每一列的View。

(2)填入View的數(shù)據(jù)或者圖片等。

(3)連接數(shù)據(jù)與ListView的適配器。

也就是說,要使用ListView,首先要了解什么是適配器。適配器是一個連接數(shù)據(jù)和AdapterView(ListView就是一個典型的AdapterView,后面還會學習其他的)的橋梁,通過它能有效地實現(xiàn)數(shù)據(jù)與AdapterView的分離設置,使AdapterView與數(shù)據(jù)的綁定更加簡便,修改更加方便

Android中提供了很多的Adapter,表4-5列出了常用的幾個。

表4-5 常用適配器

Adapter

含義

ArrayAdapterT

用來綁定一個數(shù)組,支持泛型操作

SimpleAdapter

用來綁定在xml中定義的控件對應的數(shù)據(jù)

SimpleCursorAdapter

用來綁定游標得到的數(shù)據(jù)

BaseAdapter

通用的基礎適配器

其實適配器還有很多,要注意的是,各種Adapter只不過是轉換的方式和能力不一樣而已。下面就通過使用不同的Adapter來為ListView綁定數(shù)據(jù)(SimpleCursorAdapter暫且不講,后面講SQLite時會介紹)。

4.12.1 ListView使用ArrayAdapter

用ArrayAdapter可以實現(xiàn)簡單的ListView的數(shù)據(jù)綁定。默認情況下,ArrayAdapter綁定每個對象的toString值到layout中預先定義的TextView控件上。ArrayAdapter的使用非常簡單。

實例:

工程目錄:EX_04_12

在布局文件中加入一個ListView控件。

?xmlversion="1.0"encoding="utf-8"? LinearLayoutxmlns:android="

" android:layout_width="fill_parent"

android:layout_height="fill_parent" !-- 添加一個ListView控件 -- ListView

android:id="@+id/lv" android:layout_width="fill_parent" android:layout_height="fill_parent"/

/LinearLayout

然后在Activity中初始化。

publicclass MyListView extends Activity {

privatestaticfinal String[] strs = new String[] {

"first", "second", "third", "fourth", "fifth"

};//定義一個String數(shù)組用來顯示ListView的內(nèi)容private ListView lv;/** Called when the activity is first created. */

@Override

publicvoid onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);

setContentView(R.layout.main);

lv = (ListView) findViewById(R.id.lv);//得到ListView對象的引用 /*為ListView設置Adapter來綁定數(shù)據(jù)*/

lv.setAdapter(new ArrayAdapterString(this,

android.R.layout.simple_list_item_1, strs));

}

}

▲圖4-29 ListView使用ArrayAdapter運行效果

代碼非常的簡單,運行效果如圖4-29所示。

分析一下使用的步驟。

(1)定義一個數(shù)組來存放ListView中item的內(nèi)容。

(2)通過實現(xiàn)ArrayAdapter的構造函數(shù)來創(chuàng)建一個ArrayAdapter的對象。

(3)通過ListView的setAdapter()方法綁定ArrayAdapter。

其中第二步有必要說一下的是,ArrayAdapter有多個構造函數(shù),例子中實現(xiàn)的是最常用的一種。第一個參數(shù)為上下文,第二個參數(shù)為一個包含TextView,用來填充ListView的每一行的布局資源ID。第三個參數(shù)為ListView的內(nèi)容。其中第二個參數(shù)可以自定義一個layout,但是這個layout必須要有TextView控件。通常我們使用Android提供的資源,除了例子中所用的,常用的還有如下幾種,可實現(xiàn)帶RadioButton和CheckBox的ListView。

(1)通過指定android.R.layout.simple_list_item_checked這個資源,實現(xiàn)帶選擇框的ListView。需要用setChoiceMode()方法設定選擇為多選還是單選,否則將不能實現(xiàn)選擇效果,運行效果如圖4-30所示。

實現(xiàn)代碼如下:

lv.setAdapter(new ArrayAdapterString(this,

android.R.layout.simple_list_item_checked, strs));

lv.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);

(2)通過指定android.R.layout.simple_list_item_multiple_choice這個資源實現(xiàn)帶CheckBox的ListView。同樣的,需要用setChoiceMode()方法來設置單選或者多選,運行效果如圖4-31所示。

實現(xiàn)代碼如下:

lv.setAdapter(new ArrayAdapterString(this,

android.R.layout.simple_list_item_multiple_choice, strs));

lv.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);

(3)通過指定android.R.layout.simple_list_item_single_choice這個資源實現(xiàn)帶RadioButton的ListView。這里要注意的是,這里并不是指定了單選。是多選還是單選要通過setChoiceMode()方法來指定,運行效果如圖4-32所示。

實現(xiàn)代碼如下:

lv.setAdapter(newArrayAdapterString(this,

android.R.layout.simple_list_item_single_choice,strs));

lv.setChoiceMode(ListView.CHOICE_MODE_SINGLE);

在前面講到過,ListView的職責除了填充數(shù)據(jù)外,還要處理用戶的操作。通過如下的代碼就可以為ListView綁定一個點擊監(jiān)聽器,點擊后在標題欄顯示點擊的行數(shù)。

lv.setOnItemClickListener(new OnItemClickListener() {

@Override

publicvoid onItemClick(AdapterView? arg0, View arg1, int arg2,

long arg3) {

//點擊后在標題上顯示點擊了第幾行 setTitle("你點擊了第"+arg2+"行");

}

});

4.12.2 ListView使用SimpleAdapter

很多時候需要在列表中展示一些除了文字以外的東西,比如圖片等。這時候可以使用SimpleAdapter。SimpleAdapter的使用也非常簡單,同時它的功能也非常強大??梢酝ㄟ^它自定義ListView中的item的內(nèi)容,比如圖片、多選框等??匆粋€例子,實現(xiàn)一個每一行都有一個ImageView和TextView的ListView。先看一下運行效果,如圖4-34所示。

▲圖4-34 帶圖標的ListView

首先在布局文件中增加一個ListView控件。

還需要定義一個ListView中每一行的布局,用RelativeLayout來實現(xiàn)一個帶兩行字和一個圖片的布局。

item.xml:

?xmlversion="1.0"encoding="utf-8"?

RelativeLayoutxmlns:android=""

android:layout_height="fill_parent" android:layout_width="fill_parent"

ImageViewandroid:layout_alignParentRight="true" android:layout_width="wrap_content"

android:layout_height="wrap_content" android:id="@+id/ItemImage"/

TextViewandroid:id="@+id/ItemTitle" android:layout_height="wrap_content"

android:layout_width="fill_parent" android:textSize="20sp"/

TextViewandroid:id="@+id/ItemText" android:layout_height="wrap_content"

android:layout_width="fill_parent" android:layout_below="@+id/ItemTitle"/ /RelativeLayout

配置完畢,就可以在Java代碼中為ListView綁定數(shù)據(jù)。

publicclass MyListViewSimple extends Activity {

private ListView lv;

/** Called when the activity is first created. */ @Override

publicvoid onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);

setContentView(R.layout.main);

lv = (ListView) findViewById(R.id.lv);/*定義一個動態(tài)數(shù)組*/

ArrayListHashMapString, Object listItem = new ArrayListHashMapString, Object();/*在數(shù)組中存放數(shù)據(jù)*/

for(int i=0;i10;i++)

{

HashMapString, Object map = new HashMapString, Object();

map.put("ItemImage", R.drawable.icon);//加入圖片 map.put("ItemTitle", "第"+i+"行");

map.put("ItemText", "這是第"+i+"行");

listItem.add(map);

}

SimpleAdapter mSimpleAdapter = new SimpleAdapter(this,listItem,//需要綁定的數(shù)據(jù)

R.layout.item,//每一行的布局//動態(tài)數(shù)組中的數(shù)據(jù)源的鍵對應到定義布局的View中new String[] {"ItemImage"

,"ItemTitle", "ItemText"},

newint[] {R.id.ItemImage,R.id.ItemTitle,R.id.ItemText}

);

lv.setAdapter(mSimpleAdapter);//為ListView綁定適配器 lv.setOnItemClickListener(new

OnItemClickListener() {

@Override

publicvoid onItemClick(AdapterView? arg0, View arg1, int arg2,

long arg3) {

setTitle("你點擊了第"+arg2+"行");//設置標題欄顯示點擊的行

}

});

}

}

使用simpleAdapter的數(shù)據(jù)一般都是用HashMap構成的列表,列表的每一節(jié)對應ListView的每一行。通過SimpleAdapter的構造函數(shù),將HashMap的每個鍵的數(shù)據(jù)映射到布局文件中對應控件上。這個布局文件一般根據(jù)自己的需要來自己定義。梳理一下使用SimpleAdapter的步驟。

(1)根據(jù)需要定義ListView每行所實現(xiàn)的布局。

(2)定義一個HashMap構成的列表,將數(shù)據(jù)以鍵值對的方式存放在里面。

(3)構造SimpleAdapter對象。

(4)將LsitView綁定到SimpleAdapter上。

4.12.3 ListView使用BaseAdapter與ListView的優(yōu)化

在ListView的使用中,有時候還需要在里面加入按鈕等控件,實現(xiàn)單獨的操作。也就是說,這個ListView不再只是展示數(shù)據(jù),也不僅僅是這一行要來處理用戶的操作,而是里面的控件要獲得用戶的焦點。讀者可以試試用SimpleAdapter添加一個按鈕到ListView的條目中,會發(fā)現(xiàn)可以添加,但是卻無法獲得焦點,點擊操作被ListView的Item所覆蓋。這時候最方便的方法就是使用靈活的適配器BaseAdapter了。

使用simpleAdapter的數(shù)據(jù)一般都是用HashMap構成的列表,列表的每一節(jié)對應ListView的每一行。通過SimpleAdapter的構造函數(shù),將HashMap的每個鍵的數(shù)據(jù)映射到布局文件中對應控件上。這個布局文件一般根據(jù)自己的需要來自己定義。梳理一下使用SimpleAdapter的步驟。

(1)根據(jù)需要定義ListView每行所實現(xiàn)的布局。

(2)定義一個HashMap構成的列表,將數(shù)據(jù)以鍵值對的方式存放在里面。

(3)構造SimpleAdapter對象。

(4)將LsitView綁定到SimpleAdapter上。

4.12.3 ListView使用BaseAdapter與ListView的優(yōu)化

在ListView的使用中,有時候還需要在里面加入按鈕等控件,實現(xiàn)單獨的操作。也就是說,這個ListView不再只是展示數(shù)據(jù),也不僅僅是這一行要來處理用戶的操作,而是里面的控件要獲得用戶的焦點。讀者可以試試用SimpleAdapter添加一個按鈕到ListView的條目中,會發(fā)現(xiàn)可以添加,但是卻無法獲得焦點,點擊操作被ListView的Item所覆蓋。這時候最方便的方法就是使用靈活的適配器BaseAdapter了。


新聞名稱:androidlistview,androidlistview中怎么調(diào)用攝像頭
文章URL:http://weahome.cn/article/dsgisdh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部