gpt4 book ai didi

android - float 操作按钮未在 Android 中显示图像?

转载 作者:行者123 更新时间:2023-12-04 15:59:46 25 4
gpt4 key购买 nike

正如标题所说,我不知道如何解决这个问题。我读了 problem 但那是在 2018 年,我对所有这些库和依赖项都不是很熟悉它们是如何工作的。但是从我声明的依赖项来看,从 Android Studio 来看,这就是我得到的:
enter image description here
我想在 FAB 中添加某种“附加文档”图标/图像。我尝试通过添加 New Vector 来做到这一点 Assets ,但图像不会出现在我的可绘制文件夹中。如何为我的项目添加一个漂亮的图标/图像,并将其设置为 FAB?
这是 XML:

<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:icon="@drawable/attache_file">

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

最佳答案

我找到了解决方案,只需在 dimens.xml 中添加以下语句<dimen name="design_fab_image_size" tools:override="true">56dp</dimen>并且必须要加应用程序:tint="@null"在您的 FAB 设计 xml 中

<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_anchor="@id/bottomBar"
app:srcCompat="@drawable/ic_logo"
app:tint="@null" />```

Happy to help :)

关于android - float 操作按钮未在 Android 中显示图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61047223/

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