Android第五天之ListView列表视图

本文介绍了Android中ListView的使用,包括两种创建方式:单列ArrayList动态数组与多列自定义布局。阐述了ListView的三要素——控件、适配器和数据,并提供了相关XML布局文件及MainActivity.java代码示例。
摘要由CSDN通过智能技术生成

ListView 是一种用于垂直显示的列表控件,类似于QQ好友列表的可以上下翻.
三要素:
1.ListView控件
2.适配器
3.数据

一.列表视图第一种创建方式:
单列数据列表,通过ArrayList动态数组创建列表的资源数据,ArrayAdapter创建适配器对象,setAdapter将适配器和数据绑定到一起实现列表视图.

fragment_main.xml文件:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
		xmlns:tools="http://schemas.android.com/tools"
		android:layout_width="match_parent"
		android:layout_height="match_parent"
		android:orientation="vertical">

		<ListView
			android:id="@+id/listView1"
			android:layout_width="fill_parent"
			android:layout_height="wrap_content"
			android:background="#FF00FFFF">

		</ListView>

</LinearLayout>


MainActivity.java文件:

package com.example.listview;

		import java.util.ArrayList;
		import java.util.List;
		import android.os.Bundle;
		import android.support.v7.app.ActionBarActivit
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值