显示小吃店时,我想向上移动按钮,因此不会隐藏它们。我从堆栈溢出尝试了不同的解决方案,但无法提出解决方案。这是我的布局文件:
echo '901051|Becker|Locale|NM|35|Eddy|015|322833N|1040812W|32.4759521|-104.1366141|||||959|3146|Carlsbad East|11/01/1992|' \
| ./a.out
我想做的就是移动小吃栏上方底部的那四个按钮。显示小吃店的代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:paddingLeft="0dp"
android:paddingRight="0dp" >
<include
android:id="@+id/header"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
layout="@layout/fragment_expiry_dates_list_header" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/products_list"
android:name="com.example.expirydate.ui.main.ExpiryDatesFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/header"
android:layout_above="@id/buttonNewOrOpened"
android:layout_marginLeft="0dp"
android:layout_marginRight="0dp"
android:layout_marginBottom="3dp"
app:layoutManager="LinearLayoutManager"
tools:context=".expirydatefragment.ExpiryDatesFragment"
tools:listitem="@layout/fragment_expiry_dates_list_item" />
<Button
android:id="@+id/buttonNewOrOpened"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerInParent="false"
android:layout_marginBottom="8dp"
android:layout_marginTop="8dp"
android:enabled="false"
android:text="New" />
<Button
android:id="@+id/buttonUsed"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_toEndOf="@id/buttonNewOrOpened"
android:layout_marginBottom="8dp"
android:layout_marginTop="8dp"
android:enabled="false"
android:text="Used" />
<ImageButton
android:id="@+id/buttonScanner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_gravity="center"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:layout_toStartOf="@id/buttonAdd"
android:background="@drawable/roundcorner"
android:padding="8dp"
android:src="@android:drawable/ic_menu_gallery"
android:contentDescription="scan product" />
<ImageButton
android:id="@+id/buttonAdd"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentBottom="true"
android:layout_gravity="center"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:padding="8dp"
android:background="@drawable/roundcorner"
android:src="@android:drawable/ic_input_add"
android:contentDescription="add product" />
</RelativeLayout>
我尝试了几种添加自己的layout_behavior或添加app:insetEdges =“ bottom”的解决方案,但没有任何效果。
答案 0 :(得分:1)
尝试使用app:insetEdges="bottom"
时,您的方式几乎正确。但是首先,insetEdges
和layout_dodgeInsetEdges
仅与CoordinatorLayout
一起正常工作。您需要将RelativeLayout
更改为CoordinatorLayout
。在该组之后,您的按钮将以一种布局显示,例如可以为RelativeLayout
并向其中添加app:layout_dodgeInsetEdges="bottom"
和android:layout_gravity="bottom"
。由于Snackbar默认情况下具有app:insetEdges="bottom"
,因此您只需要将该属性设置为Buttons容器即可。
要使CoordinatorLayout正常工作,还应将header
包裹在AppBarLayout
中,并将app:layout_behavior="@string/appbar_scrolling_view_behavior"
添加到RecyclerView
中。在这里,我可以提供此解决方案的模板。
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/container"
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" >
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<!-- Your header here or your header need to be already wrapped in AppBarLayout -->
</com.google.android.material.appbar.AppBarLayout>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/products_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layoutManager="LinearLayoutManager"
tools:context=".expirydatefragment.ExpiryDatesFragment"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
<RelativeLayout
android:id="@+id/buttonsContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_dodgeInsetEdges="bottom"
android:layout_gravity="bottom">
<!--Your Buttons here-->
</RelativeLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>