在我的项目中,我具有RecyclerView并尝试使用RecycleView显示项目。一切工作正常,但以下代码中的按钮未显示第一个recyclerview项并将其隐藏。任何帮助表示赞赏。
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="TestFragment">
<android.support.v7.widget.RecyclerView
android:id="@+id/testrv"
android:layout_width="match_parent"
android:layout_height="563dp">
</android.support.v7.widget.RecyclerView>
<LinearLayout
android:id="@+id/next_prev_button"
android:layout_below="@+id/rv_homepost"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="50dp"
android:layout_weight="1"
android:gravity="center_vertical">
<Button
android:id="@+id/prev_button"
style="@style/Widget.AppCompat.Button.Colored"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="4dp"
android:layout_weight="1"
android:enabled="true"
android:text="Previous" />
<View
android:layout_width="1dp"
android:layout_height="match_parent" />
<Button
android:id="@+id/next_button"
style="@style/Widget.AppCompat.Button.Colored"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="4dp"
android:layout_weight="1"
android:enabled="true"
android:text="Next" />
</LinearLayout>
</FrameLayout>
答案 0 :(得分:0)
第一个建议-为回收者视图定义特定尺寸不是一个好方法-这取决于设备的分辨率/尺寸,并且可能不适用于所有设备。我通常应该在布局视图之间重新安排它,以使其在可用空间之间适合。
我不确定我是否正确理解了该问题-但是通过在Android Studio上查看代码的结果,我相信这是与回收者视图重叠的按钮,对吗?
建议:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:id="@+id/next_prev_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical">
<Button
android:id="@+id/prev_button"
style="@style/Widget.AppCompat.Button.Colored"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="4dp"
android:layout_weight="1"
android:enabled="true"
android:text="Previous" />
<View
android:layout_width="1dp"
android:layout_height="match_parent" />
<Button
android:id="@+id/next_button"
style="@style/Widget.AppCompat.Button.Colored"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="4dp"
android:layout_weight="1"
android:enabled="true"
android:text="Next" />
</LinearLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/testrv"
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.v7.widget.RecyclerView>