ArrayAdapter使用
ArrayAdapter将数组中的每个元素绑定到布局资源中定义的简单View控件。 1.定义textview.xml <?xml version="1.0" encoding="utf-8"?> <TextView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content" android:textSize="20sp" /> 2.定义界面 <LinearLayout xmlns:android="http…