2010-06-26 143 views

回答

3

有大量的教程和關於它的問題。

僅舉幾個從谷歌搜索:

我沒有測試它,但你行的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> 
+0

想要圖像對齊:( – Sand 2010-06-26 16:15:14

+0

@Sand:檢查第一個鏈接。它討論了一個row.xml。在那裏你會爲每一行做你自己的看法。使用RelativeLayout或LinearLayout並將圖像放在右側,就是這樣。 – Macarse 2010-06-26 16:20:42

+0

但你如何對齊右側的圖像? – Sand 2010-06-26 16:40:01