一直在試圖找出Android佈局和有點問題。我得到了儘可能找到我想要的地方的對象,使用RelativeLayout(嘗試LinearLayout和TableLayout組合,只發現重力和屬性沒有做我認爲他們會做的事情...)但我我們遇到了一個與其他文本背後的文字出血有關的問題。RelativeLayout保證金問題,文字滲入其他「字段」
第二項說明了問題。我想有沒有文字出血的相同佈局。這裏是我的代碼:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="?android:attr/listPreferredItemHeight"
android:layout_width="wrap_content"
android:padding="6dip">
<TextView android:id="@+id/item_text_product"
android:layout_alignParentLeft="true"
android:textSize="24sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView android:id="@+id/item_text_total"
android:layout_alignParentRight="true"
android:textSize="18sp"
android:textStyle="bold"
android:textColor="#00aa00"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView android:id="@+id/item_text_count"
android:layout_alignParentRight="true"
android:layout_below="@id/item_text_total"
android:textSize="12sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView android:id="@+id/text_count"
android:text="Count: "
android:textSize="12sp"
android:layout_toLeftOf="@id/item_text_count"
android:layout_alignBaseline="@id/item_text_count"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</RelativeLayout>
這是最快,最簡單的解決方案。像冠軍一樣工作。謝謝。 – moonlightcheese 2011-03-08 20:56:31
似乎不是處理不同屏幕尺寸的好方法... – 2011-03-08 21:33:22