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>


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM