2016-08-22 4 views
-1

Я добавил два списка в макет. Я хочу, чтобы они поддерживали свой «макет» в течение всей деятельности. Но когда я добавляю элементы во второй ListView, сначала сжимается, игнорируя присваиваемый layout_weight. Как я могу решить эту проблему?Два ListViews в одном макете меняют свой вес после добавления элементов списка

Вот что я ожидаю:

А вот код:

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

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="0dp" 
     android:layout_weight="3" 
     android:orientation="vertical"> 

     <TextView 
      android:id="@+id/content_add_group_text_name" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:text="First List" /> 

     <View 
      android:layout_width="match_parent" 
      android:layout_height="1dp" 
      android:background="#DDD" /> 

     <FrameLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content"> 

      <ListView 
       android:id="@+id/list_added_people" 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" /> 

      <TextView 
       android:id="@+id/added_people_empty_view" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:layout_gravity="center" 
       android:text="List One Empty View"/> 

     </FrameLayout> 

    </LinearLayout> 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="0dp" 
     android:layout_weight="7" 
     android:orientation="vertical"> 

     <TextView 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:text="Second List" /> 

     <View 
      android:layout_width="match_parent" 
      android:layout_height="1dp" 
      android:background="#DDD" /> 

     <FrameLayout 
      android:layout_width="match_parent" 
      android:layout_height="match_parent"> 

      <ListView 
       android:id="@+id/list_contacts" 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:clipToPadding="false" /> 

      <TextView 
       android:id="@+id/contacts_empty_view" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:layout_gravity="center" 
       android:text="List Two Empty View"/> 

      <com.github.silvestrpredko.dotprogressbar.DotProgressBar 
       android:id="@+id/dots" 
       android:layout_width="wrap_content" 
       android:layout_height="16dp" 
       android:layout_gravity="center" 
       android:visibility="gone" /> 

     </FrameLayout> 

    </LinearLayout> 

</LinearLayout> 
+1

«layout_height» в корневой строке LinearLayout должен быть 'match_parent'. Это также касается как 'FrameLayout', так и' ListView'. –

+0

Это решает @MikeM !! Можете ли вы объяснить, в чем проблема? –

+0

Вы никогда не хотите использовать 'wrap_content' для высоты' ListView', но главной проблемой, вероятно, является 'wrap_content' для корневой высоты LinearLayout'. Чтобы обернуть, он должен знать высоты своих детей, но при вычислении высоты детей с весами он должен знать свою собственную высоту. Эта круговая зависимость, наряду с неточной высотой для детей первой группы, приводила к неожиданному поведению. –

ответ

1

Попробуйте следующий код Добавить android:weightSum="2" в вашем родительском макете и установите android:layout_weight="1" на обоих его Чайлдс для равные пространства.

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

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="0dp" 
     android:layout_weight="1" 
     android:orientation="vertical"> 

     <TextView 
      android:id="@+id/content_add_group_text_name" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:text="First List" /> 

     <View 
      android:layout_width="match_parent" 
      android:layout_height="1dp" 
      android:background="#DDD" /> 

     <FrameLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content"> 

      <ListView 
       android:id="@+id/list_added_people" 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" /> 

      <TextView 
       android:id="@+id/added_people_empty_view" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:layout_gravity="center" 
       android:text="List One Empty View" /> 

     </FrameLayout> 

    </LinearLayout> 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="0dp" 
     android:layout_weight="1" 
     android:orientation="vertical"> 

     <TextView 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:text="Second List" /> 

     <View 
      android:layout_width="match_parent" 
      android:layout_height="1dp" 
      android:background="#DDD" /> 

     <FrameLayout 
      android:layout_width="match_parent" 
      android:layout_height="match_parent"> 

      <ListView 
       android:id="@+id/list_contacts" 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:clipToPadding="false" /> 

      <TextView 
       android:id="@+id/contacts_empty_view" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:layout_gravity="center" 
       android:text="List Two Empty View" /> 

      <com.github.silvestrpredko.dotprogressbar.DotProgressBar 
       android:id="@+id/dots" 
       android:layout_width="wrap_content" 
       android:layout_height="16dp" 
       android:layout_gravity="center" 
       android:visibility="gone" /> 

     </FrameLayout> 

    </LinearLayout> 

</LinearLayout> 
+0

@ альфа-рион - ваша проблема исправлена. –

+0

Да, я не изменил веса, но изменил параметры макета, как Майк предложил в комментарии MikeM –