为什么在 android 中使用 recyclerview 修复 Coordinatorlayout 滚动底部的按钮
Why Fix Button in Bottom in Coordinator Layout scroll with recycle view in android
我想在底部有一个回收视图和一个修复按钮。
我使用协调器布局,一切正常,但是当回收视图滚动结束时,修复按钮在回收视图中移动了一点。
有什么问题吗??
这是我的代码..
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/filter_frame"
android:orientation="vertical">
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/shopsList"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@id/complete_info_order"
android:layout_marginBottom="@dimen/_70sdp"
android:orientation="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<Button
android:id="@+id/complete_info_order"
android:layout_width="match_parent"
android:layout_height="@dimen/_40sdp"
android:layout_alignParentBottom="true"
android:layout_gravity="bottom"
android:layout_marginLeft="@dimen/_20sdp"
android:layout_marginTop="@dimen/_30sdp"
android:layout_marginRight="@dimen/_20sdp"
android:layout_marginBottom="@dimen/_60sdp"
android:background="@drawable/login_button_frame"
android:gravity="center"/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
按钮在回收视图中不移动怎么办??
非常感谢...
试试这个:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/shopsList"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<Button
android:id="@+id/complete_info_order"
android:text="Button"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_width="wrap_content"
android:layout_height="40dp"/>
</RelativeLayout>
我想在底部有一个回收视图和一个修复按钮。 我使用协调器布局,一切正常,但是当回收视图滚动结束时,修复按钮在回收视图中移动了一点。 有什么问题吗??
这是我的代码..
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/filter_frame"
android:orientation="vertical">
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/shopsList"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@id/complete_info_order"
android:layout_marginBottom="@dimen/_70sdp"
android:orientation="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<Button
android:id="@+id/complete_info_order"
android:layout_width="match_parent"
android:layout_height="@dimen/_40sdp"
android:layout_alignParentBottom="true"
android:layout_gravity="bottom"
android:layout_marginLeft="@dimen/_20sdp"
android:layout_marginTop="@dimen/_30sdp"
android:layout_marginRight="@dimen/_20sdp"
android:layout_marginBottom="@dimen/_60sdp"
android:background="@drawable/login_button_frame"
android:gravity="center"/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
按钮在回收视图中不移动怎么办??
非常感谢...
试试这个:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/shopsList"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<Button
android:id="@+id/complete_info_order"
android:text="Button"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_width="wrap_content"
android:layout_height="40dp"/>
</RelativeLayout>