Android开发笔记之ArrayAdapter

1,ArrayAdapter的item中的条目的布局文件的正确写法:

item.xml

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tv_2"
android:layout_width="match_parent"
android:layout_height="match_parent" />

2,错误用法

不能像下面这样使用布局,即不能在布局中使用

<?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" >
<TextView
android:id="@+id/tv_my"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>


</LinearLayout>

猜你喜欢

转载自www.cnblogs.com/tianxianye/p/12083054.html