2017-03-23 9 views
0

このLinearLayoutを使用して、ヘッダー、チェックボックスのリスト、および下部のボタンを持つダイアログを作成します。いくつかのチェックボックスにはScrollViewが必要です。残念ながら、ScrollViewはすべての領域を占めており、ボタンのセクションは表示されません。ScrollViewはすべて垂直方向にスペースを取る

私は巨大なリストを取得した場合、最後のLinearLayoutを見えるようにするソリューションはありますか?おかげさまで

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

    <TextView 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:gravity="center" 
     android:padding="10dp" 
     android:text="@string/header_text" /> 

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

     <ScrollView 
      android:layout_width="0dp" 
      android:layout_height="wrap_content" 
      android:layout_weight="1"> 

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

       <Checkbox ....> 
       <Checkbox ....> 
       <Checkbox ....> 
       <Checkbox ....> 

      </LinearLayout> 
     </ScrollView> 

     <ImageButton 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_gravity="center_vertical" 
      android:layout_marginRight="10dp" 
      android:layout_marginEnd="10dp" 
      android:padding="5dp" /> 
    </LinearLayout> 

    <LinearLayout 
     android:layout_alignParentBottom="true" 
     android:layout_width="match_parent" 
     android:layout_height="56dp" 
     android:layout_marginTop="20dp" 
     android:layout_gravity="bottom" 
     android:orientation="vertical"> 

     <Button ....> 
     <Button ....> 

    </LinearLayout> 

</LinearLayout> 

答えて

0

問題は、右のTextViewの下のLinearLayoutにあるかもしれない:

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

あなたは "wrap_content" までの高さを設定しました。それを "0dp"にしてから "1"にしてください:

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="0dp" 
    android:layout_weight="1" 
    android:focusable="true" 
    android:focusableInTouchMode="true" 
    android:orientation="horizontal"> 
+0

これは解決策です。ありがとう – Alexander

+0

私は助けてうれしい! – Rob

関連する問題