欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android组件ListView列表简单使用

程序员文章站 2023-12-22 19:30:40
listview是一种非常常见的一个组件,以垂直列表的形式显示列表项。而完成一个简单的listview只需要这么三个步骤: 1、在布局文件xml中添加listview...

listview是一种非常常见的一个组件,以垂直列表的形式显示列表项。而完成一个简单的listview只需要这么三个步骤:

1、在布局文件xml中添加listview并配置相应的属性
2、在资源文件xml中添加列表项
3、将布局文件应用上

举例:

1、在布局文件中加listview并配置相应属性,如下配置了宽度、高度、分割线高度、是否显示头部分割线、列表项

<?xml version="1.0" encoding="utf-8"?> 
<linearlayout xmlns:android="http://schemas.android.com/apk/res/android" 
 android:layout_width="match_parent" 
 android:layout_height="match_parent" 
 android:orientation="vertical"> 
 
 <listview 
  android:layout_width="match_parent" 
  android:layout_height="wrap_content" 
  android:dividerheight="5px" 
  android:headerdividersenabled="false" 
  android:entries="@array/list"/> 
 
</linearlayout> 

2、资源文件xml中添加列表项,新建xml文件,命名为arrays.xml,存放于values文件夹中(开发环境为android studio)

<?xml version="1.0" encoding="utf-8"?> 
<resources> 
 <string-array name="list"> 
  <item>列表项1</item> 
  <item>列表项2</item> 
  <item>列表项3</item> 
  <item>列表项4</item> 
  <item>列表项5</item> 
  <item>列表项6</item> 
  <item>列表项7</item> 
 </string-array> 
</resources> 

 3、在mainactivity中应用布局文件,即可显示列表项

Android组件ListView列表简单使用

这样就完成了一个最最简单的列表。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

上一篇:

下一篇: