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