首页 > 移动平台 > 详细

Android开发笔记之ArrayAdapter

时间:2019-12-23 13:46:52      阅读:89      评论:0      收藏:0      [点我收藏+]

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>

Android开发笔记之ArrayAdapter

原文:https://www.cnblogs.com/tianxianye/p/12083054.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!