2012-12-31 41 views
0

我有多個孩子的LinearLayout,我想ListView控件,以填補父佈局的剩餘下半區:重量在LinearLayout中

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
       android:orientation="vertical" 
       android:layout_width="match_parent" 
       android:layout_height="match_parent" 
       android:weightSum="1" 
    > 

    <AutoCompleteTextView 
     android:id="@+id/from_tv" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_marginLeft="10dp" 
     android:layout_marginRight="10dp" 
     android:layout_marginTop="20dp" 
     android:layout_marginBottom="10dp" 
     android:hint="@string/hint_from" 
     android:singleLine="true" 
     android:imeOptions="actionNext" 
     /> 

    <AutoCompleteTextView 
     android:id="@+id/to_tv" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_margin="10dp" 
     android:hint="@string/hint_to" 
     android:singleLine="true" 
     android:imeOptions="actionSearch" 
     /> 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:orientation="horizontal" 
     > 

     <Button 
      android:id="@+id/inverse_btn" 
      android:layout_width="0dp" 
      android:layout_height="match_parent" 
      android:layout_weight=".4" 
      android:layout_margin="10dp" 
      android:text="@string/inverse" 
      android:onClick="onClick" 
      /> 

     <Button 
      android:id="@+id/search_btn" 
      android:layout_width="0dp" 
      android:layout_height="match_parent" 
      android:layout_weight=".6" 
      android:layout_margin="10dp" 
      android:text="@string/search" 
      android:onClick="onClick" 
      /> 


    </LinearLayout> 


    <View 
     android:layout_width="match_parent" 
     android:layout_height="1dp" 
     android:layout_marginTop="20dp" 
     android:layout_marginBottom="10dp" 
     android:background="@color/holo_blue_dark" 
     /> 

    <ListView 
     android:id="@+id/favorites_lv" 
     android:layout_width="match_parent" 
     android:layout_height="0dip" 
     android:layout_weight=".5" 
     android:layout_marginLeft="10dp" 
     android:layout_marginRight="10dp" 
     android:layout_marginTop="10dp" 
     android:layout_gravity="bottom" 
     android:background="#700" 
     /> 

</LinearLayout> 

但我發現了這樣的結果:

enter image description here

另外,正如您所看到的,ListView項目高度存在問題。項目佈局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
       android:orientation="horizontal" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:padding="5dp"> 

    <ImageView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:src="@android:drawable/ic_menu_mylocation" 
     android:contentDescription="@string/favorites_icon_cd" 
     /> 


    <LinearLayout 
     android:layout_width="wrap_content" 
     android:layout_height="match_parent" 
     android:layout_marginLeft="20dp" 
     android:orientation="vertical" 
     android:gravity="left|center_vertical" 
     > 

     <TextView 
      android:id="@+id/from_tv" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:ellipsize="end" 
      /> 

     <TextView 
      android:id="@+id/to_tv" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:ellipsize="end" 
      /> 

    </LinearLayout> 

</LinearLayout> 

如何解決這些問題?

回答

3

我有多個孩子的LinearLayout,我想ListView控件,以填補父佈局的剩餘下半區:

您可以嘗試簡單地改變ListView的高度match_parent和不使用layout_weight

<ListView 
    android:id="@+id/favorites_lv" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    ... /> 

此外,你可以看到,有一個與ListView的項目高度的問題。

要使用你的佈局簡單嵌套的LinearLayout的改變高度wrap_content

<LinearLayout 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_marginLeft="20dp" 
    android:orientation="vertical" 
    android:gravity="left|center_vertical" 
    > 

(如果你想在圖像中心,您可以添加:android:layout_gravity="center_vertical"您的ImageView)

雖然如果您使用一個RelativeLayout而不是兩個LinearLayout,則Android繪製的速度會更快。試試這個:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:padding="5dp" 
    > 

    <ImageView 
     android:id="@+id/image" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_centerVertical="true" 
     android:layout_marginRight="20dp" 
     android:src="@android:drawable/ic_menu_mylocation" 
     android:contentDescription="@string/favorites_icon_cd" 
     /> 

    <TextView 
     android:id="@+id/from_tv" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_alignParentRight="true" 
     android:layout_toRightOf="@id/image" 
     android:ellipsize="end" 
     /> 

    <TextView 
     android:id="@+id/to_tv" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_alignParentRight="true" 
     android:layout_below="@id/from_tv" 
     android:layout_toRightOf="@id/image" 
     android:ellipsize="end" 
     /> 

</RelativeLayout> 
+0

謝謝,第一個問題解決了,第二個呢? – arts777

+0

對不起,我沒有看到第二個問題,我更新了我的答案。 – Sam

+0

嘗試兩種可能的解決方案,但沒有結果:( – arts777