gpt4 book ai didi

android - FloatingActionButton 锚定在 View 顶部

转载 作者:行者123 更新时间:2023-11-29 19:48:34 25 4
gpt4 key购买 nike

我想将 FloatingActionButton 锚定在 View 之上,
这是我的代码:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout 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:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".ui.activity.MainActivity">

<android.support.design.widget.CoordinatorLayout
android:id="@+id/coordinator"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

<com.alirezaafkar.toolbar.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:direction="rtl"
app:navigationIcon="@drawable/ic_arrow_back_white_24dp"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:title="@string/app_name">

<TextView
android:id="@+id/tv_toolbar_title"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="center"
android:gravity="center"
android:textColor="@android:color/white"
android:textSize="20dp"
android:textStyle="bold" />

</com.alirezaafkar.toolbar.Toolbar>

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

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

<FrameLayout
android:id="@+id/container_body"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />

</FrameLayout>

<ViewSwitcher
android:id="@+id/viewSwitcherBottomBar"
android:layout_width="wrap_content"
android:layout_height="120dp"
android:layout_gravity="bottom"
android:inAnimation="@android:anim/slide_in_left">

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

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


</ViewSwitcher>

<android.support.design.widget.FloatingActionButton
android:id="@+id/fab_my_location"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end|bottom"
android:layout_margin="16dp"
android:layout_marginBottom="60dp"
android:paddingBottom="60dp"
android:src="@drawable/ic_my_location_white_24dp"
app:borderWidth="0dp"
app:elevation="6dp"
app:fabSize="mini"
app:layout_anchor="@id/viewSwitcherBottomBar"
app:layout_anchorGravity="top|right" />


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


这是结果,
但结果并不完全在 View 的顶部:

enter image description here


我怎样才能把 floatingActionButton 正好放在 View 的顶部?
编辑:
我希望 floatingActionButton 不与锚定 View 重叠。

最佳答案

我没有为 FloatingActionButton 提供填充和边距,而是在 View 中设置填充并且它起作用了:

    <ViewSwitcher
android:id="@+id/viewSwitcherBottomBar"
android:layout_width="wrap_content"
android:layout_height="120dp"
android:paddingTop="25dp"
android:layout_gravity="bottom"
android:inAnimation="@android:anim/slide_in_left">

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

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

</ViewSwitcher>


<android.support.design.widget.FloatingActionButton
android:id="@+id/fab_my_location"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:src="@drawable/ic_my_location_white_24dp"
app:borderWidth="0dp"
app:elevation="6dp"
app:fabSize="mini"
app:layout_anchor="@id/viewSwitcherBottomBar"
app:layout_anchorGravity="top|right" />

关于android - FloatingActionButton 锚定在 View 顶部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37384957/

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