当前位置:   article > 正文

Android:三种Adapter的使用方法_adapter方法

adapter方法

1、simpleAdapter使用(3步:准备样式,准备数据,配置适配器)

1).adapter方法说明

  1.前后端数据分离
  2.不能通过list更行数据,而是通过adapter实例更新数据

2).插入一个listview ,创建 listview 样式xml文件

 activity_main.xml

<ListView
    android:id="@+id/list"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:divider="#5E5E5E"
    android:dividerHeight="2dp"
    tools:ignore="MissingConstraints">

</ListView>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

 listview.xml(自定义list样式文件)

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <TextView
        android:id="@+id/tv_1"
        android:layout_width="80dp"
        android:layout_height="54dp">

    </TextView>
    <TextView
        android:id="@+id/tv_2"
        android:layout_width="80dp"
        android:layout_height="54dp">

    </TextView>
    <TextView
        android:id="@+id/tv_3"
        android:layout_width="80dp"
        android:layout_height="54dp">

    </TextView>
</LinearLayout>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
3).准备数据源,插入数据源
private String[] name  = {
   "a","b","c"};
private String [] des = {
   "aa","bb","cc"};
private int [] id={
   1,2,3};
  • 1
  • 2
  • 3
  • 4
  • 5

 这里的key名随便取,只要后面与simpleAdapter里的String[] from 对应就好。

List<Map<String,Object>> maps = new ArrayList<Map<String,Object>>();
for (int i = 0 ; i < name.length ;i++){
   
    Map<String,Object> map = new HashMap<>();
    map.put("name",name[i]);
    map.put("des",des[i]);
    map.put
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/83742
推荐阅读
相关标签
  

闽ICP备14008679号