gpt4 book ai didi

android - 将 float 操作栏置于底部选项卡上方

转载 作者:行者123 更新时间:2023-11-29 14:13:41 25 4
gpt4 key购买 nike

我有一个 float 操作按钮,但我需要将它放在底部选项卡上方。我试过增加底部边距或更改 layout_anchor,但似乎没有任何效果。如何将 float 操作栏稍微移动到底部选项卡上方,使其不被覆盖?

这是我的 float 操作栏 xml:

<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_gravity="bottom|right|end"
android:layout_height="wrap_content"
android:layout_margin="@dimen/fab_margin"
android:layout_width="wrap_content"
android:src="@drawable/ic_add_white_24dp"
app:layout_anchorGravity="bottom|right|end"
app:layout_behavior=".FABScrollBehavior" />

screenshot

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/coordinator_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:theme="@style/AppTheme.AppBarOverlay">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
app:popupTheme="@style/AppTheme.PopupOverlay" />

</android.support.design.widget.AppBarLayout>

<LinearLayout
android:layout_height="match_parent"
android:layout_width="match_parent"
android:orientation="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior">

<android.support.v4.view.ViewPager
android:id="@+id/view_pager"
android:layout_height="0dp"
android:layout_weight="1"
android:layout_width="match_parent" />

<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:background="@color/color_primary"
android:layout_height="wrap_content"
android:layout_width="match_parent"
app:tabTextColor="@android:color/secondary_text_dark"
app:tabSelectedTextColor="@android:color/primary_text_dark" />

</LinearLayout>

<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_gravity="bottom|right|end"
android:layout_height="wrap_content"
android:layout_margin="@dimen/fab_margin"
android:layout_width="wrap_content"
android:src="@drawable/ic_add_white_24dp"
app:layout_anchorGravity="bottom|right|end"
app:layout_behavior=".FABScrollBehavior" />

</android.support.design.widget.CoordinatorLayout>

最佳答案

将所有这些放在相对布局容器中,并在 FloatingActionButton 中使用上述属性,然后取边距底部并根据您进行调整。

关于android - 将 float 操作栏置于底部选项卡上方,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37201358/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com