首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

Android中ListView动态平添删除项

2012-09-01 
Android中ListView动态添加删除项RelativeLayout???android:id@+id/RelativeLayout01???android:layou

Android中ListView动态添加删除项

<RelativeLayout???
android:id="@+id/RelativeLayout01"???
android:layout_width="fill_parent"???
xmlns:android="http://schemas.android.com/apk/res/android"???
android:layout_height="wrap_content"???
android:paddingBottom="4dip"???
android:paddingLeft="12dip"??
android:paddingRight="12dip">??
<ImageView?
android:layout_width="wrap_content"?
android:layout_height="wrap_content"?
android:src="@drawable/taxi1"?
android:id="@+id/ItemImage"?
android:paddingTop="4dip">
</ImageView>
<TextView?
android:layout_height="wrap_content"?
android:layout_width="fill_parent"?
android:text="DaZhong Taxi Corporation"?
android:layout_toRightOf="@+id/ItemImage"?
android:id="@+id/ItemTitle"?
android:textSize="24dip"></TextView>
<TextView?
android:layout_height="wrap_content"?
android:layout_width="fill_parent"?
android:text="Tel:021-67786874"?
android:id="@+id/ItemText"?
android:layout_below="@+id/ItemTitle"?
android:layout_toRightOf="@+id/ItemImage">
</TextView>
</RelativeLayout>?

热点排行