Android在BottomAppBar下放置视图

时间:2018-08-28 13:16:19

标签: android coordinator-layout android-bottomappbar

我想做一个非常简单的布局。一个RecyclerView,一个EditText,一个没有FloatingActionButton的BottomAppBar。但是我不明白如何将我的视图放在BottomAppBar下?

我所拥有的:

<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout 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>

 <androidx.core.widget.NestedScrollView
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     app:layout_anchor="@id/bar"
     app:layout_anchorGravity="top">

     <LinearLayout
         android:layout_width="match_parent"
         android:layout_height="match_parent"
         android:orientation="vertical">
         <androidx.recyclerview.widget.RecyclerView
             android:id="@+id/recyclerView"
             android:layout_width="match_parent"
             android:layout_height="match_parent"/>

         <EditText
             android:id="@+id/editText"
             android:layout_width="match_parent"
             android:layout_height="wrap_content" />
     </LinearLayout>
 </androidx.core.widget.NestedScrollView>   

    <com.google.android.material.bottomappbar.BottomAppBar
        android:id="@+id/bar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom"
        android:backgroundTint="@color/colorPrimary"
        app:hideOnScroll="true"
        app:navigationIcon="@drawable/baseline_menu_white_24" />

</androidx.coordinatorlayout.widget.CoordinatorLayout>

我想要什么: example 有可能吗?

0 个答案:

没有答案