Android簡明開發教程十:資料繫結Data Binding

來源:互聯網
上載者:User

前面提到AndroidGraphics2DTutorial說過它是ListActivity派生出來的。ListActivity中顯示的是ListView,ListView和 Gallery ,Spinner有一個共同點:它們都是AdapterView的子類。AdapterView的顯示可以通過資料繫結來實現,資料來源可以是 數組或是資料庫記錄,資料來源和AdapterView是通過Adapter作為橋樑。通過Adapter,AdatperView可以顯示資料來源或處理使用者選 取時間,如:挑選清單中某項。

AndroidGraphics2DTutorial讀取AndroidManifest.xml中Intent-Filter為

<action android:name=”android.intent.action.MAIN” />

<category android:name=”com.pstreets.graphics2d.SAMPLE_CODE” />

的所有Activity,以列表方式顯示。使用了Android API 內建的SimpleAdapter。 來看看AndroidGraphics2DTutorial.java 中相關代碼:

public class AndroidGraphics2DTutorial extends ListActivity {
private static final String SAMPLE_CATEGORY
= "com.pstreets.graphics2d.SAMPLE_CODE" ;
@Override
public void onCreate(Bundle savedInstanceState) {
super .onCreate(savedInstanceState);
setListAdapter( new SimpleAdapter( this , getData(),
android.R.layout.simple_list_item_1, new String[] { "title" },
new int [] { android.R.id.text1 }));
getListView().setTextFilterEnabled( true );
}
protected List getData() {
List<Map> myData = new ArrayList<Map>();
Intent mainIntent = new Intent(Intent.ACTION_MAIN, null );
mainIntent.addCategory(SAMPLE_CATEGORY);
PackageManager pm = getPackageManager();
List<ResolveInfo> list = pm.queryIntentActivities(mainIntent, 0 );
if ( null == list)
return myData;
String[] prefixPath;
prefixPath = null ;
int len = list.size();
Map<String, Boolean> entries = new HashMap<String, Boolean>();
for ( int i = 0 ; i < len; i++) {
ResolveInfo info = list.get(i);
CharSequence labelSeq = info.loadLabel(pm);
String label = labelSeq != null ? labelSeq.toString()
: info.activityInfo.name;
String[] labelPath = label.split( "/" );
String nextLabel = prefixPath == null ? labelPath[ 0 ]
: labelPath[prefixPath.length];
if ((prefixPath != null ? prefixPath.length : 0 )
== labelPath.length - 1 ) {
addItem(myData,
nextLabel,
activityIntent(
info.activityInfo.applicationInfo.packageName,
info.activityInfo.name));
} else {
if (entries.get(nextLabel) == null ) {
addItem(myData, nextLabel, browseIntent(nextLabel));
entries.put(nextLabel, true );
}
}
}
Collections.sort(myData, sDisplayNameComparator);
return myData;
}
private final static Comparator<Map> sDisplayNameComparator
= new Comparator<Map>() {
private final Collator collator = Collator.getInstance();
public int compare(Map map1, Map map2) {
return collator.compare(map1.get( "title" ), map2.get( "title" ));
}
};
protected Intent activityIntent(String pkg, String componentName) {
Intent result = new Intent();
result.setClassName(pkg, componentName);
return result;
}
protected Intent browseIntent(String path) {
Intent result = new Intent();
result.setClass( this , AndroidGraphics2DTutorial. class );
return result;
}
protected void addItem(List<Map> data, String name, Intent intent) {
Map<String, Object> temp = new HashMap<String, Object>();
temp.put( "title" , name);
temp.put( "intent" , intent);
data.add(temp);
}
@Override
protected void onListItemClick(ListView l, View v,
int position, long id) {
Map map = (Map) l.getItemAtPosition(position);
Intent intent = (Intent) map.get( "intent" );
startActivity(intent);
}
}

使用資料顯示Layout ,上面代碼中

setListAdapter(new SimpleAdapter(this, getData(),
android.R.layout.simple_list_item_1, new String[] { “title” },
new int[] { android.R.id.text1 }));

為ListActivity中ListView 指定Adapter,這個Adapter的資料來源為getData(),getData()從Manifest.xml中尋找出所有符合 條件的樣本Activity列表。 這裡DataSource是靜態從檔案中讀取,如果DataSource為數組或是其它資料來源,如果程式中修改 數值的內容,則你應該notifyDataSetChanged()來通知UI資料有變動。UI則會重新整理顯示以反映資料變化。簡單的說Android資料 綁定和.Net WinForm ,WPF 中資料繫結類似。

處理使用者選取事件 ,AdapterView.OnItemClickListener()可以用來處理選取事件,對於ListActivity,可以用protected void onListItemClick(ListView l, View v, int position, long id)。AndroidGraphics2DTutorial中的實現是使用者選取 Activity名稱好,則啟動對應的Activity。

上面代碼中使用SimpleAdapter,並使用Android提供的android.R.layout.simple_list_item_1來顯示資料,Andrid也允許使 用自訂的Layout來顯示資料,對這個例子來說,可以使用圖片加說明來顯示列表,將在後面介紹如果使用自訂Adapter和自 定義Layout來顯示繫結資料。

查看全套教程:http://www.bianceng.cn/OS/extra/201301/35252.htm

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.