我的活动在一个布局中有复杂的布局,例如expandableListView和recyclerView。我已经按照https://stackoverflow.com/a/19845401/4226651的答案解决了我的简单布局问题,但可扩展和回收器仍然重叠。
这是我的布局
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="27dp"
android:layout_marginBottom="27dp"
android:layout_marginLeft="48dp"
android:layout_marginRight="48dp"
android:orientation="vertical"
android:weightSum="1080">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="208"
android:layout_gravity="center">
<include layout="@layout/frame_top_home"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="872"
android:orientation="horizontal"
android:weightSum="1920">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1323">
<ExpandableListView
android:id="@+id/exp_category"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:listSelector="@drawable/custom_selector"
android:groupIndicator="@null"
android:scrollbars="none"
android:divider="@null" />
</RelativeLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="597"
android:orientation="vertical">
<FrameLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
有任何建议如何解决?