我已經爲我的CustomAdapter下面的XML文件:顯示在另一個的上面如何格式化的ListView行
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:padding="6dip">
<TextView
android:id="@+id/firstLine"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/nullline"
android:layout_alignParentBottom="true"
android:gravity="center_vertical"
android:text="My Application"
android:textColor="#0099CC" />
<TextView
android:id="@+id/nullline"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_above="@+id/secondLine"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:textColor="#0099CC"
android:text="seas" />
<TextView
android:id="@+id/secondLine"
android:layout_width="fill_parent"
android:layout_height="26dip"
android:layout_alignBottom="@+id/firstLine"
android:layout_alignLeft="@+id/firstLine"
android:ellipsize="marquee"
android:singleLine="true"
android:text="Secondline"
android:textColor="#0099CC" />
</RelativeLayout>
現在,我試圖通過添加layout_above
但我TextViews的一個格式化這個。
我想顯示爲
的TextView ONE
TextView的兩個
TextView的三
我怎樣才能顯示它像這樣,如果layout_below
不起作用?
*「之間的其他」*?對不起,但我不知道這意味着什麼......你的意思是「除了」(如同在一邊)?你使用什麼佈局作爲基礎? – m0skit0 2013-05-09 15:43:48
你能用完整的xml和可能的UI設計來編輯你的問題嗎? – Hein 2013-05-09 15:43:48