我很新的Android開發,並會喜歡一些幫助創建Android上的一個簡單的佈局。這個佈局將用於列表視圖。創建Android的佈局
這是我要的樣子: 這是我所得到的(不要笑):
文本底部行重疊的頂部,這個數字應該是右側(圖像的左側)和不同行中的圖像應該對齊。
(是的,我知道這個顏色是醜陋的。)
這裏是我的xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:id="@+id/thelayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="6dip"
xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout
android:id="@+id/widget375"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="5">
<TextView
android:id="@+id/txt2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="14pt"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/txt1" />
<TextView
android:id="@+id/txt3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/txt1"
android:layout_alignParentLeft="true" />
<TextView
android:id="@+id/txt1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="14pt"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true" />
</RelativeLayout>
<ImageView
android:id="@+id/theicon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" />
</LinearLayout>
謝謝!
張貼您的佈局xml。 –
什麼都嘗試過。張貼 –
發表您的xml文件... – rajshree