我需要在佈局中有3個文本。中心的textView
是紅色的,其他2個是黑色的。所以我把它添加到relativelayout
並設置layout
爲textView2到textView1和textView3的權利textView2android在佈局中排列文本視圖
權但是,當在第三文本視圖中的文本是大,它也應該TextView的一個。 insted我得到這個。
現在我應該怎麼做才能讓財產以後也是這樣嗎?
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/rel_lay"
android:background="#DFDFDF"
android:padding="2dip" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="2dip"
android:text="TextView"
android:textColor="#000000" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/textView1"
android:text="TextView"
android:textColor="#FF0000" />
<TextView
android:id="@+id/textView4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="false"
android:layout_toRightOf="@+id/textView2"
android:text="TextView when the third text is longer"
android:textColor="#000000" />
</RelativeLayout>
這是相對佈局與3的TextView。
嘗試與重郵 – Richa 2013-03-05 06:58:54
烏爾XML代碼!!!! – 2013-03-05 07:00:20
發佈您的xml代碼 – Pragnani 2013-03-05 07:00:30