gpt4 book ai didi

android - 裁剪的 FloatingActionButton

转载 作者:行者123 更新时间:2023-11-29 18:25:12 26 4
gpt4 key购买 nike

我无法制作正确的按钮。如果我们为 CoordinatorLayout 设置 android: layout_height = "90dp",那么一切都会发生,但我希望它没有硬值。我可以这样做吗?

enter image description here

<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">

<androidx.viewpager.widget.ViewPager
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
/>

<androidx.coordinatorlayout.widget.CoordinatorLayout

android:layout_width="match_parent"
android:layout_height="wrap_content"
>

<com.google.android.material.floatingactionbutton.FloatingActionButton

android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_add_24px"
app:layout_anchor="@id/bottom_app_bar"
app:tint="@null" />

<com.google.android.material.bottomappbar.BottomAppBar
style="@style/Widget.MaterialComponents.BottomAppBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
app:fabAlignmentMode="center"
app:menu="@menu/days_bottomappbar_menu" />

</androidx.coordinatorlayout.widget.CoordinatorLayout>

</LinearLayout>

最佳答案

在 app/build.gradle 中,你导入:

implementation 'com.google.android.material:material:1.0.0'

在 xml 中:

<androidx.coordinatorlayout.widget.CoordinatorLayout

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


<com.google.android.material.bottomappbar.BottomAppBar
android:id="@+id/bottom_app_bar"
style="@style/Widget.MaterialComponents.BottomAppBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:fabAlignmentMode="center"
android:layout_gravity="bottom"/>
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_add_24px"
app:layout_anchor="@id/bottom_app_bar" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>

关于android - 裁剪的 FloatingActionButton,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59473138/

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