Android Studio 浮动操作按钮阻塞底部导航栏

vi4fp9gy  于 2023-01-31  发布在  Android
关注(0)|答案(1)|浏览(155)

我希望我的浮动操作按钮是在列表视图和导航栏上方,但我似乎不能使它工作。(包括拉尤是导航栏)。
This is how it looks right now

<?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:orientation="vertical"
    tools:context=".SessionsList">

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <ListView

            android:id="@+id/lvSessions"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>

        <com.google.android.material.floatingactionbutton.FloatingActionButton
            android:id="@+id/fab"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom|end"
            android:src="@drawable/ic_baseline_add_24"
            android:contentDescription=""
            android:layout_margin="16dp" />

        <include layout="@layout/activity_base"/>

    </FrameLayout>

</LinearLayout>

这是导航栏布局代码:

<?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"
    tools:context=".BaseActivity">

    <com.google.android.material.bottomnavigation.BottomNavigationView
        android:id="@+id/bottom_navigation"
        android:layout_width="match_parent"
        android:layout_height="60dp"
        app:itemBackground="@color/orange"
        app:itemIconTint="@drawable/selector"
        app:itemTextColor="@drawable/selector"
        android:layout_gravity="bottom"
        app:menu="@menu/menu_navigation" />

</LinearLayout>

我试着把它放在一个框架布局和移动的东西,但我不能让它的工作,因为我希望它。

lx0bsm1f

lx0bsm1f1#

像这样更改主布局

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <ListView
            android:id="@+id/lvSessions"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />

        <include
            android:id="@+id/baseLayout"
            layout="@layout/activity_base"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true" />
        <com.google.android.material.floatingactionbutton.FloatingActionButton
            android:id="@+id/fab"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginEnd="16dp"
            android:layout_above="@+id/baseLayout"
            android:layout_alignParentEnd="true"
            android:src="@drawable/g1" />

    </RelativeLayout>

</FrameLayout>

并像这样更改activity_base布局

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <com.google.android.material.bottomnavigation.BottomNavigationView
        android:id="@+id/bottom_navigation"
        android:layout_width="match_parent"
        android:layout_height="60dp"
       android:layout_gravity="bottom"
        app:itemBackground="@color/black" />

</LinearLayout>

相关问题