0
我想做一個列表,其中每行有一個文本在頂部和底部和另一個圖像對齊右(如附圖)。ListActivity佈局自定義
但我不能。任何人都可以幫我嗎?
樣本圖像:
http://www.freeimagehosting.net/uploads/fb6e2055f5.png
我想做一個列表,其中每行有一個文本在頂部和底部和另一個圖像對齊右(如附圖)。ListActivity佈局自定義
但我不能。任何人都可以幫我嗎?
樣本圖像:
http://www.freeimagehosting.net/uploads/fb6e2055f5.png
有大量的教程和關於它的問題。
僅舉幾個從谷歌搜索:
我沒有測試它,但你行的XML應該是這樣的這個:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView android:id="@+id/green_title"
android:textSize="25sp"
android:textColor="#00FF00"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:text="Text1"/>
<TextView android:id="@+id/sub_title"
android:textSize="15sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/green_title"
android:text="Text2"/>
<ImageView android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/image"
android:layout_alignParentRight="true"
android:layout_below="@id/green_title"/>
</RelativeLayout>
想要圖像對齊:( – Sand 2010-06-26 16:15:14
@Sand:檢查第一個鏈接。它討論了一個row.xml。在那裏你會爲每一行做你自己的看法。使用RelativeLayout或LinearLayout並將圖像放在右側,就是這樣。 – Macarse 2010-06-26 16:20:42
但你如何對齊右側的圖像? – Sand 2010-06-26 16:40:01