91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android開發中如何進行數據綁定Data Binding

發布時間:2021-11-26 16:09:49 來源:億速云 閱讀:234 作者:柒染 欄目:移動開發

Android開發中如何進行數據綁定Data Binding,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

前面提到AndroidGraphics2DTutorial說過它是ListActivity派生出來的。ListActivity中顯示的是 ListView,ListView和Gallery  ,Spinner有一個共同點:它們都是AdapterView的子類。AdapterView的顯示可以通過數據綁定來實現,數據源可以是數組或是數據庫記錄,數據源和AdapterView是通過Adapter作為橋梁。通過Adapter,AdatperView可以顯示數據源或處理用戶選取時間, 如:選擇列表中某項。

Android開發中如何進行數據綁定Data Binding

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[] labellabelPath = 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來顯示數據。

關于Android開發中如何進行數據綁定Data Binding問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

沈丘县| 永平县| 绵竹市| 阿克苏市| 长治市| 乐清市| 巍山| 远安县| 定西市| 铁岭市| 景宁| 都昌县| 白水县| 高陵县| 淮安市| 鲁甸县| 舟曲县| 襄汾县| 东光县| 营山县| 南川市| 开封市| 惠东县| 广饶县| 施秉县| 武定县| 上思县| 红安县| 嘉善县| 邓州市| 乡宁县| 布尔津县| 屏东县| 龙州县| 德清县| 江城| 聊城市| 大余县| 昭平县| 鄄城县| 岳阳市|