2011-07-28 110 views
0

我試圖讓這個佈局看起來更好。一切都找到,直到我加入清單。從那以後,一切都縮水了。我添加使用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> 

回答

3

您可以使該佈局的權重爲1,以便佔用其餘未使用的所有空間。

因此,例如:

您的畫廊採取了屏幕的5%,前另需10%,其他的一些東西需要另外5%,你的佈局誰擁有重量1將採取的其他80%的屏幕。

如果這不是你要找的人,請說出來:)

+0

謝謝,我會馬上試試這個bbs – brux

+0

我試着在imageView中添加layout_weight =「1」,它並沒有讓人感到有所不同。當我將相同的內容添加到ImageLay所在的父LinearLayout中時也是如此。 – brux

+0

wierd,對我來說,代碼在我想要一個佈局來覆蓋未被採用的屏幕的其餘部分時工作......也許嘗試使用weightSum? – Androider

0

試試下面的代碼在AndroidManifest.xml

<uses-sdk android:minSdkVersion="8" 
       android:targetSdkVersion="8" /> 

爲您的應用程序從以下選項中

合適的選擇...

<supports-screens android:resizeable=["true"| "false"] 
        android:smallScreens=["true" | "false"] 
        android:normalScreens=["true" | "false"] 
        android:largeScreens=["true" | "false"] 
        android:xlargeScreens=["true" | "false"] 
        android:anyDensity=["true" | "false"] 
        android:requiresSmallestWidthDp="integer" 
        android:compatibleWidthLimitDp="integer" 
        android:largestWidthLimitDp="integer"/> 

這應該可以解決您的問題。您也可以嘗試其他API sdk版本,而不是適用於您的應用的8。

+0

我沒有得到這將如何幫助OP在所有 –