一、ArrayAdapter(数组适配器),这个适配器使用有一定的局限性,只能显示一行文本数据
(1)基本使用实例
布局文件:
<?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:id="@+id/ll1" android:layout_width="match_parent" android:layout_height="wrap_content"> </ListView> </LinearLayout>
Java文件
package com.example.test3; import android.app.Activity; import android.os.Bundle; import android.widget.ArrayAdapter; import android.widget.ListView; public class MainActivity extends Activity{ // 定义要显示的数据 private String[] datas = {"张三","李四","王五","麻子","小强"}; private ArrayAdapter<String> adapter; private ListView listView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); listView = (ListView) findViewById(R.id.ll1); // 初始化适配器 adapter = new ArrayAdapter<>(this,android.R.layout.simple_expandable_list_item_1,datas); listView.setAdapter(adapter); } }
效果图:
(2)实现上面还可以先在resvalue下创建一个数组资源的xml文件:arrays.xml,然后在listview中使用entries