2013-05-25 61 views
9

我該怎麼辦LinearLayout身高一半fill_parent in xml?身高一半fill_parent xml

<LinearLayout android:layout_width="fill_parent" 
       android:layout_height="fill_parent" 
       android:weightSum="1"> 
     <ImageView android:layout_height="fill_parent" 
       android:layout_width="0dp" 
       android:layout_weight="0.5"/> 
</LinearLayout> 

我想做一些類似的高度。

+0

而不是fill_parent在dp中指定所需的值。像100dp或任何你想要的。 – Raghunandan

+0

你想讓你的linearLayout平方? – Blackbelt

+0

我只想要一半的屏幕有1個linearLayout,另一個有半個屏幕 – lexell

回答

24

I just want have a half of screen with 1 linearLayout and half screen with other one

試試這個佔據每個畫面的一半

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:weightSum="2" 
    android:orientation="vertical" > 

    <LinearLayout android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:layout_weight="1" 
     android:background="#192832"></LinearLayout> 

    <LinearLayout android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:layout_weight="1" 
     android:background="#193222"></LinearLayout> 


</LinearLayout> 

兩個線性佈局。

+0

這是合乎邏輯的,謝謝 – lexell

+0

您也可以使用layout_height =「0dp」作爲固定高度 –

+2

請注意'fill_parent'已被取消。對API 8或更高版本使用'match_parent'。 ([文檔](http://developer.android.com/reference/android/view/ViewGroup.LayoutParams.html)) – Keith