假设我们使用RecycogView进行Dialog。
所以我们可以简化布局:
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:background="@color/gray"/>
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:background="@color/gray"/>
我想要实现的是在回收者视图之上和之下的分隔线。
以下是它的外观:
但正如我所说,它在对话框中,并且RecyclerView中的内容大小正在发生变化,因此当内容较小时它可以正常工作,但是当内容大于对话框的最大高度时,最后一个分隔线隐藏在回收器视图下方内容。
我试图通过在相对布局中放入所有内容并与底部最后一个分隔符对齐来解决这个问题,但问题是反转,我的意思是当内容大于对话框的最大高度时它起作用,但是它不起作用内容较小,因为回收者视图和最后一个分隔符之间存在空白。
我们将不胜感激。
答案 0 :(得分:0)
尝试将android:maxHeight
设置为RecyclerView
答案 1 :(得分:0)
使用以下xml代码替换对话框布局。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent">
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:background="@android:color/black"/>
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_weight="1"
android:layout_height="match_parent"/>
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:background="@android:color/black"/>
</LinearLayout>
希望这能解决您的问题。