首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >安卓开发: simple_list_item1和simple_list_item2有什么区别?

安卓开发: simple_list_item1和simple_list_item2有什么区别?
EN

Stack Overflow用户
提问于 2012-06-07 18:33:22
回答 1查看 1.1K关注 0票数 0

我知道在安卓系统中simple_list_item1是用来创建ListView的。simple_list_item2是用来做什么的?另外,如何更改ListView的整体外观?

示例代码: ListView lv;lv.setAdapter( ArrayAdapter(this,android.R.layout.simple_list_item_1,results));

EN

回答 1

Stack Overflow用户

发布于 2012-06-07 18:36:23

simple_list_item2是一个LineListItem表示只有一个TextView

代码语言:javascript
复制
<TextView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@android:id/text1" android:layout_width="match_parent" android:layout_height="wrap_content" android:textAppearance="?android:attr/textAppearanceListItemSmall" android:gravity="center_vertical" android:paddingLeft="?android:attr/listPreferredItemPaddingLeft" android:paddingRight="?android:attr/listPreferredItemPaddingRight" android:minHeight="?android:attr/listPreferredItemHeightSmall" />

simple_list_item2 is TwoLineListItem意思是有2个TextViews......

代码语言:javascript
复制
 <TwoLineListItem xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" android:minHeight="?android:attr/listPreferredItemHeight" android:mode="twoLine">

      <TextView android:id="@android:id/text1" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="?android:attr/listPreferredItemPaddingLeft" android:layout_marginTop="8dip" android:textAppearance="?android:attr/textAppearanceListItem" />

      <TextView android:id="@android:id/text2" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_below="@android:id/text1" android:layout_alignLeft="@android:id/text1" android:textAppearance="?android:attr/textAppearanceSmall" />


</TwoLineListItem>

http://mylifewithandroid.blogspot.in/2008/03/my-first-meeting-with-simpleadapter.html中使用

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/10930075

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档