W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
從本節(jié)開始我們要講的UI控件都是跟Adapter(適配器)打交道的,了解并學(xué)會(huì)使用這個(gè)Adapter很重要, Adapter是用來(lái)幫助填充數(shù)據(jù)的中間橋梁,簡(jiǎn)單點(diǎn)說(shuō)就是:將各種數(shù)據(jù)以合適的形式顯示到view上,提供 給用戶看!
在開始學(xué)習(xí)Adapter之前我們要來(lái)了解下這個(gè)MVC模式概念: 舉個(gè)例子:大型的商業(yè)程序通常由多人一同開發(fā)完成,比如有人負(fù)責(zé)操作接口的規(guī)劃與設(shè)計(jì), 有人負(fù)責(zé)程序代碼的編寫如果要能夠做到程序項(xiàng)目的分工就必須在程序的結(jié)構(gòu)上做適合的安排 ,如果,接口設(shè)計(jì)與修改都涉及到程序代碼的改變的話,那么兩者的分工就會(huì)造成執(zhí)行上的困難 良好的程序架構(gòu)師將整個(gè)程序項(xiàng)目劃分為如圖的三個(gè)部分:
關(guān)系圖解析:
- Model:通??梢岳斫鉃閿?shù)據(jù),負(fù)責(zé)執(zhí)行程序的核心運(yùn)算與判斷邏輯,,通過(guò)view獲得用戶 輸入的數(shù)據(jù),然后根據(jù)從數(shù)據(jù)庫(kù)查詢相關(guān)的信息,最后進(jìn)行運(yùn)算和判斷,再將得到的結(jié)果交給view來(lái)顯示
- view:用戶的操作接口,說(shuō)白了就是GUI,應(yīng)該使用哪種接口組件,組件間的排列位置與順序都需要設(shè)計(jì)
- Controller:控制器,作為model與view之間的樞紐,負(fù)責(zé)控制程序的執(zhí)行流程以及對(duì)象之間的一個(gè)互動(dòng)
而這個(gè)Adapter則是中間的這個(gè)Controller的部分: Model(數(shù)據(jù)) ---> Controller(以什么方式顯示到)---> View(用戶界面) 這就是簡(jiǎn)單MVC組件的簡(jiǎn)單理解!
官方文檔:Adapter
首先我們來(lái)看看他的繼承結(jié)構(gòu)圖:
上面就是Adapter以及繼承結(jié)構(gòu)圖了,接著我們介紹一下實(shí)際開發(fā)中還用到的幾個(gè)Adapter吧!
- BaseAdapter:抽象類,實(shí)際開發(fā)中我們會(huì)繼承這個(gè)類并且重寫相關(guān)方法,用得最多的一個(gè)Adapter!
- ArrayAdapter:支持泛型操作,最簡(jiǎn)單的一個(gè)Adapter,只能展現(xiàn)一行文字~
- SimpleAdapter:同樣具有良好擴(kuò)展性的一個(gè)Adapter,可以自定義多種效果!
- SimpleCursorAdapter:用于顯示簡(jiǎn)單文本類型的listView,一般在數(shù)據(jù)庫(kù)那里會(huì)用到,不過(guò)有點(diǎn)過(guò)時(shí), 不推薦使用!
其實(shí)一個(gè)BaseAdapter就夠玩的了,至于其他的,實(shí)際開發(fā)中用得不多,后面用到在講解~
好的,多說(shuō)無(wú)益,寫代碼最實(shí)際,接下來(lái)我們來(lái)用寫幾個(gè)簡(jiǎn)單的Adapter實(shí)例, 幫助我們了解Adapter給我們帶來(lái)的便利,另外,因?yàn)锳dapter需要結(jié)合ListView, GridView等等控件講解,一些高級(jí)一點(diǎn)的用法我們都放在ListView那里講! 這里就簡(jiǎn)單演示下效果,另外這里用到的控件是ListView,下一節(jié)就會(huì)講解, 現(xiàn)在看不懂也沒(méi)關(guān)系!
運(yùn)行效果圖:
代碼實(shí)現(xiàn):
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//要顯示的數(shù)據(jù)
String[] strs = {"基神","B神","翔神","曹神","J神"};
//創(chuàng)建ArrayAdapter
ArrayAdapter<String> adapter = new ArrayAdapter<String>
(this,android.R.layout.simple_expandable_list_item_1,strs);
//獲取ListView對(duì)象,通過(guò)調(diào)用setAdapter方法為L(zhǎng)istView設(shè)置Adapter設(shè)置適配器
ListView list_test = (ListView) findViewById(R.id.list_test);
list_test.setAdapter(adapter);
}
}
一些相關(guān)的東西:
1.除了通過(guò)數(shù)組外,我們還可以寫到一個(gè)數(shù)組資源文件中:
比如:在res\valuse下創(chuàng)建一個(gè)數(shù)組資源的xml文件:arrays.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="myarray">
<item>語(yǔ)文</item>
<item>數(shù)學(xué)</item>
<item>英語(yǔ)</item>
</string-array>
</resources>
接著布局的listview屬性設(shè)置下這個(gè)列表項(xiàng):
<ListView
android:id="@id/list_test"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:entries="@array/myarray"/>
就可以了~
當(dāng)然我們也可以在Java代碼中這樣寫:
ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(this,
R.array.myarray,android.R.layout.simple_list_item_multiple_choice );
同樣也是可以的!
2.一開始也說(shuō)了這個(gè)ArrayAdapter支持泛型,那么集合必不可少啦,比如,這樣寫:
List<String> data = new ArrayList<String>();
data.add("基神");
data.add("B神");
ArrayAdapter<String> adapter = new ArrayAdapter<String>
(this,android.R.layout.simple_expandable_list_item_1,data);
就可以了~
3.我們看到了在實(shí)例化ArrayAdapter的第二個(gè)參數(shù): android.R.layout.simple_expandable_list_item_1 其實(shí)這些是系統(tǒng)給我們提供好的一些ListView模板,有下面幾種:
simple_list_item_1 : 單獨(dú)一行的文本框
SimpleAdapter:簡(jiǎn)單的Adapter,看似簡(jiǎn)單,功能強(qiáng)大,下面我們來(lái)寫個(gè)稍微復(fù)雜一點(diǎn)的列表 布局吧!
運(yùn)行效果圖:
代碼實(shí)現(xiàn):
先來(lái)編寫一個(gè)列表項(xiàng)目每一項(xiàng)的布局:
list_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"
android:orientation="horizontal">
<!-- 定義一個(gè)用于顯示頭像的ImageView -->
<ImageView
android:id="@+id/imgtou"
android:layout_width="64dp"
android:layout_height="64dp"
android:baselineAlignBottom="true"
android:paddingLeft="8dp" />
<!-- 定義一個(gè)豎直方向的LinearLayout,把QQ呢稱與說(shuō)說(shuō)的文本框設(shè)置出來(lái) -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="8dp"
android:textColor="#1D1D1C"
android:textSize="20sp" />
<TextView
android:id="@+id/says"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="8px"
android:textColor="#B4B4B9"
android:textSize="14sp" />
</LinearLayout>
</LinearLayout>
接下來(lái)是MainActivity.java:
public class MainActivity extends AppCompatActivity {
private String[] names = new String[]{"B神", "基神", "曹神"};
private String[] says = new String[]{"無(wú)形被黑,最為致命", "大神好厲害~", "我將帶頭日狗~"};
private int[] imgIds = new int[]{R.mipmap.head_icon1, R.mipmap.head_icon2, R.mipmap.head_icon3};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
List<Map<String, Object>> listitem = new ArrayList<Map<String, Object>>();
for (int i = 0; i < names.length; i++) {
Map<String, Object> showitem = new HashMap<String, Object>();
showitem.put("touxiang", imgIds[i]);
showitem.put("name", names[i]);
showitem.put("says", says[i]);
listitem.add(showitem);
}
//創(chuàng)建一個(gè)simpleAdapter
SimpleAdapter myAdapter = new SimpleAdapter(getApplicationContext(), listitem, R.layout.list_item, new String[]{"touxiang", "name", "says"}, new int[]{R.id.imgtou, R.id.name, R.id.says});
ListView listView = (ListView) findViewById(R.id.list_test);
listView.setAdapter(myAdapter);
}
}
好的,上面就是SimpleAdapter的簡(jiǎn)單用法了,有點(diǎn)意思~
雖然這東西過(guò)時(shí)了,不過(guò)對(duì)于不怎么會(huì)SQLite的初學(xué)者來(lái)說(shuō),用起來(lái)還是蠻方便的! 記得前面我們學(xué)ContentProivder寫過(guò)的讀取聯(lián)系人的例子么?之前是通過(guò)打印Log的 方式顯示出來(lái),現(xiàn)在我們通過(guò)這個(gè)SimpleCursorAdapter把它顯示到ListView上!
實(shí)現(xiàn)效果圖:
代碼實(shí)現(xiàn):
先寫下listView每個(gè)item的布局:
list_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"
android:orientation="horizontal">
<TextView
android:id="@+id/list_name"
android:layout_width="0dp"
android:layout_height="64dp"
android:layout_weight="1"
android:gravity="center"
android:text="小豬"
android:textColor="#0000FF"
android:textSize="18sp" />
<TextView
android:id="@+id/list_phone"
android:layout_width="0dp"
android:layout_height="64dp"
android:layout_weight="1"
android:gravity="center"
android:text="13798989898"
android:textColor="#EA5C4D"
android:textSize="18sp" />
</LinearLayout>
接著activity_main布局和前面的一樣,就是簡(jiǎn)單的ListView,然后是
MainActivity.java:
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ListView list_test = (ListView) findViewById(R.id.list_test);
//讀取聯(lián)系人
Cursor cursor = getContentResolver()
.query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null, null, null, null);
SimpleCursorAdapter spcAdapter = new SimpleCursorAdapter(this,R.layout.list_item,cursor,
new String[]{ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME,ContactsContract.CommonDataKinds.Phone.NUMBER},
new int[]{R.id.list_name,R.id.list_phone});
list_test.setAdapter(spcAdapter);
}
}
最后AndroidManifest.xml里加個(gè)讀聯(lián)系人的權(quán)限就可以了!
<uses-permission android:name="android.permission.READ_CONTACTS"/>
一問(wèn)一答:
問(wèn):就這么簡(jiǎn)單?
——答:是的,直接獲取到Cursor,然后綁定就好了,無(wú)需你自己再寫什么SQL語(yǔ)句!
問(wèn):你說(shuō)這東西過(guò)時(shí)了,那拿什么來(lái)代替?
——答:一般的做法是自己重寫B(tài)aseAdapter,獲取到數(shù)據(jù)集合后跟對(duì)應(yīng)的控件進(jìn)行綁定!
問(wèn):這個(gè)SimpleCursorAdapter還有沒(méi)有要注意的地方?
——答:有,使用SimpleCursorAdapter的話,綁定的數(shù)據(jù)庫(kù)表中一定要有id這個(gè)字段, 或者as id;而且在綁定時(shí)取出的數(shù)據(jù)必須包含這個(gè)id項(xiàng),否則的話會(huì)報(bào)以下錯(cuò)誤! java.lang.IllegalArgumentException: column 'id' does not exist**
好的,關(guān)于Adapter的基礎(chǔ)講解就到這里,當(dāng)然我們這里講解的三個(gè)Adapter,我們實(shí)際開發(fā)中... 基本上用不到,哈哈,除了SimpleAdapter偶爾可能會(huì)用下,一般我們都是重寫B(tài)aseAdapter的!
另外,關(guān)于BaseAdapter的,有很多東西要講解,就把他丟到ListView那里一起講,畢竟Adapter 總是和View沾邊,而且ListView是我們用得最多的一個(gè)空間~嗯,本節(jié)就到這里,謝謝~
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: