服务器之家:专注于VPS、云服务器配置技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Android - Android studio listview实现列表数据显示 数据循环显示效果

Android studio listview实现列表数据显示 数据循环显示效果

2022-12-12 12:40晓雨哥哥写代码 Android

这篇文章主要介绍了Android studio listview实现列表数据显示 数据循环显示功能,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

Android studio listview实现列表数据显示

Android studio listview实现列表数据显示 数据循环显示效果

样式不好看!想要好看的样式可以私我,我加!
item.xml

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?>
<!--item -->
<LinearLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="horizontal"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent">
 <!--姓名 -->
 <TextView
  android:layout_width="130dp"
  android:layout_height="wrap_content"
  android:id="@+id/name"
 />
 <!-- 性别-->
 <TextView
  android:layout_width="150dp"
  android:layout_height="wrap_content"
  android:id="@+id/sex"
 />
</LinearLayout>

main.xml

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  >
 <!-- 标题 -->
 <LinearLayout
 android:orientation="horizontal"
 android:layout_width="fill_parent"
 android:layout_height="wrap_content">
 
 <TextView
  android:layout_width="130dp"
  android:layout_height="wrap_content"
  android:text="姓名"
 />
 
  <TextView
  android:layout_width="150dp"
  android:layout_height="wrap_content"
  android:text="姓名"
 />
 
</LinearLayout>
 <!-- ListView控件 -->
<ListView
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:id="@+id/listView"
  />
</LinearLayout>

MainActivity .java

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
public class MainActivity extends Activity {
    List<String> list;
    List<String> list1;
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    ListView listView = (ListView) this.findViewById(R.id.listView);
    
    //获取到集合数据
    //名字列表,之后可以动态加入数据即可,这里只是数据例子
    list = new ArrayList<>();
    list.add("小明");
    list.add("李华");
    list.add("张三");
 
        list1 = new ArrayList<>();
    list1.add("男");
    list1.add("男");
    list1.add("女");
    
    List<HashMap<String, Object>> data = new ArrayList<HashMap<String,Object>>();
    for(int i = 0; i < list .size(); i++){
        HashMap<String, Object> item = new HashMap<String, Object>();
        item.put("name", list.get(i));
        item.put("sex", list1.get(i));
        data.add(item);       
    }
    //创建SimpleAdapter适配器将数据绑定到item显示控件上
    SimpleAdapter adapter = new SimpleAdapter(MainActivity.this, data, R.layout.item,
            new String[]{"name", "sex"}, new int[]{R.id.name, R.id.sex});
    //实现列表的显示
    listView.setAdapter(adapter);
  }
}

总结

到此这篇关于Android studio listview实现列表数据显示 数据循环显示效果的文章就介绍到这了,更多相关Android studio listview数据显示 内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/cui_xiaoyu/article/details/105583716

延伸 · 阅读

精彩推荐