您需要做的是创建一个custom view
被调用layout
的列表Item。
以下代码将创建您选择的列表项。根据您的要求修改代码。但是您可以从以下代码中想到。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:src="@drawable/ic_launcher" />
<TextView
android:id="@+id/txtItemName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/imageView1"
android:text="Item Name"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/txtItemPrice"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/imageView1"
android:layout_alignLeft="@+id/txtItemName"
android:text="Item Price" />
<TextView
android:id="@+id/txtRating"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/textView1"
android:layout_alignBottom="@+id/textView1"
android:layout_alignParentRight="true"
android:text="Rating"
android:textAppearance="?android:attr/textAppearanceSmall" />
只需将上面的代码复制并粘贴到您的layout
并切换到Graphical Layout
. 你可以看到结果。
以下链接可帮助您如何customized layout
在列表视图中使用。
自定义列表 1和自定义列表 2