我試圖讓這個佈局看起來更好。一切都找到,直到我加入清單。從那以後,一切都縮水了。我添加使用minSdk指令的原因是爲了允許像wildfire這樣的qvga設備運行我的應用程序。小視圖Android xml佈局問題
圖像不會填充空間,它的中間或其LinearLayout父項中的值很小。
此外,底部的圖庫非常小,難以點擊圖庫中的項目。
有人有一些建議嗎?
<?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="fill_parent"
android:background="#ffffff">
<LinearLayout
android:id="@+id/header"
android:layout_alignParentTop="true"
android:layout_width="fill_parent"
android:layout_height="100px"
android:background="#ffffff">
<TextView
android:text="header"
android:id="@+id/name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#000000"
android:textAppearance="?android:attr/textAppearanceLarge"
android:layout_marginLeft="10px"></TextView>
</LinearLayout>
<LinearLayout
android:id="@+id/footer"
android:layout_alignParentBottom="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<Gallery xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/examplegallery"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#ffffff" />
</LinearLayout>
<LinearLayout
android:id="@+id/body"
android:layout_below="@id/header"
android:layout_above="@+id/scrollView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<!-- Whatever your body is -->
<ImageView
android:src="@drawable/icon"
android:layout_width="fill_parent"
android:layout_gravity="center"
android:id="@+id/imageView1"
android:layout_height="120dp"></ImageView>
</LinearLayout>
<TableRow android:layout_height="wrap_content"
android:layout_width="wrap_content" android:id="@+id/tableRow1" android:layout_above="@+id/scrollView1" android:layout_alignParentLeft="true">
<TextView
android:text="price"
android:id="@+id/price"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#09bade"
android:textAppearance="?android:attr/textAppearanceLarge"
android:layout_marginRight="20px"
android:layout_marginLeft="10px"
></TextView>
<TextView
android:text="quickcode"
android:id="@+id/quickcode"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#ff8400"
android:layout_marginRight="20px"
>
</TextView>
<TextView
android:text="stock"
android:id="@+id/stock"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#ff8400"
></TextView>
</TableRow>
<ScrollView android:id="@+id/scrollView1" android:layout_width="wrap_content" android:layout_height="150px" android:layout_above="@+id/footer" android:layout_marginLeft="10px" android:layout_marginBottom="10px">
<TextView
android:text="scroll"
android:id="@+id/summary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#000000"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_marginLeft="10dip"></TextView>
</ScrollView>
<Button android:id="@+id/button1" android:layout_height="wrap_content" android:text="Wishlist" android:layout_width="wrap_content" android:layout_alignBottom="@+id/tableRow1" android:layout_alignParentRight="true"></Button>
</RelativeLayout>
謝謝,我會馬上試試這個bbs – brux
我試着在imageView中添加layout_weight =「1」,它並沒有讓人感到有所不同。當我將相同的內容添加到ImageLay所在的父LinearLayout中時也是如此。 – brux
wierd,對我來說,代碼在我想要一個佈局來覆蓋未被採用的屏幕的其餘部分時工作......也許嘗試使用weightSum? – Androider