android组件ListView之ArrayAdapter简单使用

ArrayAdapter继承于BaseAdapter,主要用来适配简单数据列表。以下代码为简单使用

activity类

public class MainActivity extends Activity {
    private ListView listView;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        listView=(ListView)findViewById(R.id.lv);
        //初始数据
        List list = new ArrayList<>();
        for (int i = 0; i < 20; i++) {
            list.add("android_ArrayAdapter"+i);
        }

        /**
         * ArrayAdapter<>(context, resource, textViewResourceId, objects)
         * 
         * context:上下文环境,activity
         * resource:listView列表项xml文件
         * textViewResourceId:需要展示数据的列表项id
         * objects:数据
         */
        ArrayAdapter adapter = new ArrayAdapter<>(this, R.layout.listview_item, R.id.lv_item, list);
        //给组件设置数据适配器
        listView.setAdapter(adapter);
    }

}

主界面activity_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"
    tools:context="com.example.l4.MainActivity" >

    <ListView
        android:id="@+id/lv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >
    ListView>

LinearLayout>

列表项listview_item.xml

<RelativeLayout 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"
    tools:context="com.example.l4.MainActivity" >

    <TextView
        android:id="@+id/lv_item"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

RelativeLayout>

效果

android组件ListView之ArrayAdapter简单使用_第1张图片

你可能感兴趣的:(android)