码迷,mamicode.com
首页 > 其他好文 > 详细

ListView+ArrayAdapter

时间:2020-05-14 19:15:38      阅读:64      评论:0      收藏:0      [点我收藏+]

标签:onclick   alt   activity   sch   valueof   this   new   lap   pen   

技术图片

 

 可以显示文本信息

ListView 的使用方法可以概括为:

1、构造数据

2、获取Adapter

3、Adapter绑定ListView

技术图片
        ListView lv_main = findViewById(R.id.lv_main);
        String [] data = new String[100];
        for(int i=0;i<data.length;i++){
            data[i]=String.valueOf(i);
        }
        ArrayAdapter<String> stringArrayAdapter = new ArrayAdapter<String>(this,R.layout.item_array_adapter,data);
        lv_main.setAdapter(stringArrayAdapter);
View Code

 

这里我们要给定两个布局文件,一个是包含ListView的主布局文件

技术图片
<?xml version="1.0" encoding="utf-8"?>
<ListView android:layout_height="fill_parent" android:layout_width="fill_parent" android:id="@+id/lv_main" xmlns:android="http://schemas.android.com/apk/res/android">
</ListView>
activity_main.xml

另一个是显示文本的布局文件

技术图片
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
         android:layout_height="50dp"
        android:textSize="20sp"/>
item_array_adapter.xml

 

ListView+ArrayAdapter

标签:onclick   alt   activity   sch   valueof   this   new   lap   pen   

原文地址:https://www.cnblogs.com/superxuezhazha/p/12890493.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!