Android开发速成简洁教程十:数据绑定DataBinding

前面提到AndroidGraphics2DTutorial说过它是ListActivity派生出来的。ListActivity中显示的是 ListView,ListView和Gallery ,Spinner有一个共同点:它们都是AdapterView的子类。AdapterView的显示可以通过数据绑定来实现,数据源可以是数组或是数据库记录,数据源和AdapterView是通过Adapter作为桥梁。通过Adapter,AdatperView可以显示数据源或处理用户选取时间, 如:选择列表中某项。

成都创新互联专注于历下网站建设服务及定制,我们拥有丰富的企业做网站经验。 热诚为您提供历下营销型网站建设,历下网站制作、历下网页设计、历下网站官网定制、成都小程序开发服务,打造历下网络公司原创品牌,更为您提供历下网站排名全网营销落地服务。

AndroidGraphics2DTutorial读取AndroidManifest.xml中Intent-Filter为


的所有Activity,以列表方式显示。使用了Android API 自带的SimpleAdapter。 来看看AndroidGraphics2DTutorial.java 中相关代码:

 
 
 
 
  1. public class AndroidGraphics2DTutorial extends ListActivity {  
  2.      private static final String SAMPLE_CATEGORY 
  3.               ="com.pstreets.graphics2d.SAMPLE_CODE";      
  4.      @Override 
  5.      public void onCreate(Bundle savedInstanceState) { 
  6.       super.onCreate(savedInstanceState);     
  7.       setListAdapter(new SimpleAdapter(this, getData(), 
  8.         android.R.layout.simple_list_item_1, new String[] { "title" }, 
  9.         new int[] { android.R.id.text1 })); 
  10.       getListView().setTextFilterEnabled(true);  
  11.      }    
  12.      protected List getData() { 
  13.       List myData = new ArrayList();    
  14.       Intent mainIntent = new Intent(Intent.ACTION_MAIN, null); 
  15.       mainIntent.addCategory(SAMPLE_CATEGORY);    
  16.       PackageManager pm = getPackageManager(); 
  17.       List list = pm.queryIntentActivities(mainIntent, 0);   
  18.         if (null == list) 
  19.        return myData;     
  20.       String[] prefixPath;    
  21.       prefixPath = null;      
  22.       int len = list.size();      
  23.       Map entries = new HashMap();      
  24.       for (int i = 0; i < len; i++) { 
  25.        ResolveInfo info = list.get(i); 
  26.        CharSequence labelSeq = info.loadLabel(pm); 
  27.    String label = labelSeq != null ? labelSeq.toString() 
  28.          : info.activityInfo.name; 
  29.        String[] labellabelPath = label.split("/");     
  30.        String nextLabel = prefixPath == null ? labelPath[0] 
  31.          : labelPath[prefixPath.length];  
  32.        if ((prefixPath != null ? prefixPath.length : 0) 
  33.     == labelPath.length - 1) { 
  34.         addItem(myData, 
  35.           nextLabel, 
  36.           activityIntent( 
  37.             info.activityInfo.applicationInfo.packageName, 
  38.             info.activityInfo.name)); 
  39.        } else { 
  40.         if (entries.get(nextLabel) == null) { 
  41.          addItem(myData, nextLabel, browseIntent(nextLabel)); 
  42.          entries.put(nextLabel, true); 
  43.         } 
  44.        }      
  45.       } 
  46.       Collections.sort(myData, sDisplayNameComparator);   
  47.       return myData; 
  48.      } 
  49.       
  50.      private final static Comparator sDisplayNameComparator 
  51.     = new Comparator() { 
  52.       private final Collator collator = Collator.getInstance();   
  53.       public int compare(Map map1, Map map2) { 
  54.        return collator.compare(map1.get("title"), map2.get("title")); 
  55.       } 
  56.      }; 
  57.       
  58.      protected Intent activityIntent(String pkg, String componentName) { 
  59.       Intent result = new Intent(); 
  60.       result.setClassName(pkg, componentName); 
  61.       return result; 
  62.      }    
  63.      protected Intent browseIntent(String path) { 
  64.       Intent result = new Intent(); 
  65.       result.setClass(this, AndroidGraphics2DTutorial.class); 
  66.       return result; 
  67.      }    
  68.      protected void addItem(List data, String name, Intent intent) { 
  69.       Map temp = new HashMap(); 
  70.       temp.put("title", name); 
  71.       temp.put("intent", intent); 
  72.       data.add(temp); 
  73.      }    
  74.      @Override 
  75.      protected void onListItemClick(ListView l, View v, 
  76.         int position, long id) { 
  77.       Map map = (Map) l.getItemAtPosition(position); 
  78.       Intent intent = (Intent) map.get("intent"); 
  79.       startActivity(intent); 
  80.      } 
  81.     } 

使用数据显示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来显示绑定的数据。

文章题目:Android开发速成简洁教程十:数据绑定DataBinding
URL链接:http://www.shufengxianlan.com/qtweb/news32/115982.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联