我在LinearLayout
中有一个孩子LinearLayout内部布局显示消息
可疑大小会使视图不可见
我已经设置了布局的方向,父布局是垂直的,内部布局是水平的我还将其中的控件的layout_height设置为0dp并设置权重
我不知道为什么?
这是我的xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<CheckBox
android:id="@+id/filter_ShowOnlyAvailableItems_Chk"
android:layout_width="match_parent"
android:text="@string/Search_ShowOnlyAvailableItems"
android:layout_height="0dp"
android:layout_weight="0.3"/>
<CheckBox
android:id="@+id/filter_Color_Chk"
android:layout_width="match_parent"
android:text="@string/Search_FilterColor"
android:layout_height="0dp"
android:layout_weight="0.3"/>
<ScrollView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.86">
<android.support.v7.widget.RecyclerView
android:id="@+id/filter_colors_recyclerview"
android:layout_width="match_parent"
android:background="@color/red"
android:layout_height="wrap_content">
</android.support.v7.widget.RecyclerView>
</ScrollView>
<LinearLayout
android:padding="5dp"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.8"/>
<Button
android:id="@+id/filter_ok_btn"
android:text="@string/Filter_Ok"
android:layout_width="0dp"
android:textColor="@android:color/black"
android:layout_weight="0.50"
android:layout_margin="5dp"
android:textAlignment="center"
android:background="@drawable/buttonrounded"
android:layout_height="wrap_content" />
<Button
android:id="@+id/filter_cancel_btn"
android:text="@string/Filter_Cancel"
android:layout_width="0dp"
android:layout_margin="5dp"
android:textColor="@android:color/black"
android:layout_weight="0.50"
android:textAlignment="center"
android:background="@drawable/buttonrounded"
android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout>
答案 0 :(得分:1)
您已在此处关闭 linearlayout 。
<LinearLayout
android:padding="5dp"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.8"/>
将此更改为
<LinearLayout
android:padding="5dp"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.8">