現在,我的應用程序的主屏幕上有50%的屏幕使用按鈕/內容,而最下面的50%只是顯示標誌。不過,我似乎無法改變它,因此徽標只佔據屏幕底部的25%。Android - 獲取佈局使用75%的屏幕時出現問題
我使用頂部的layout_weight爲3,底部爲1,但這會導致底部徽標現在佔用屏幕區域的95%,並且主區域中的所有內容都不再可見。對外部容器使用weightSum沒有奏效,並且都沒有將layout_width/height改爲fill_parent或wrap_content組合。
我已閱讀其他幫助使用layout_weight的線程,並閱讀文檔,它似乎都很直接,並已在內容領域使用它們沒有問題,我不知道爲什麼這給了我這裏的麻煩,任何人都可以幫幫我?
這裏是我的代碼:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_vertical"
android:textColor="#000000"
android:background="#faff67"
>
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:background="@drawable/backing"
android:paddingTop="5dp"
android:paddingRight="3dp"
android:paddingLeft="3dp"
android:paddingBottom="3dp"
android:layout_margin="3dp"
android:layout_weight="3"
>
<!-- Main content area stuff -->
</LinearLayout>
<LinearLayout
android:id="@+id/main"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="0dp"
android:layout_weight="1"
>
<ImageView android:scaleType="fitCenter"
android:contentDescription="Logo"
android:src="@drawable/logo"
android:id="@+id/front_logo"
android:padding="1sp"
android:layout_height="fill_parent"
android:layout_width="fill_parent"></ImageView>
</LinearLayout>
</LinearLayout>
檢查了這一點http://stackoverflow.com/a/16518557/1939564 – 2013-12-05 11:48:03