您好我想将图像设置为FloatingActionButton我做了这个:
<android.support.design.widget.FloatingActionButton
android:id="@+id/qick_menu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:src="@drawable/quick_menu"
app:elevation="7dp"
app:layout_anchor="@id/mapview"
app:layout_anchorGravity="bottom|right|end" />
但我的按钮中有一个小图片
答案 0 :(得分:21)
试试这个:在布局中:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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">
<android.support.design.widget.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="0dp"
android:scaleType="fitXY"
android:src="@drawable/map"
app:backgroundTint="@android:color/transparent"
app:borderWidth="0dp"
app:useCompatPadding="true" />
</RelativeLayout>
现在在res / values / dimens.xml中:
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Default screen margins, per the Android Design guidelines. -->
<dimen name="fab_margin">16dp</dimen>
<dimen name="design_fab_image_size" tools:override="true">56dp</dimen>
</resources>
此行很重要<dimen name="design_fab_image_size" tools:override="true">56dp</dimen>
输出:
答案 1 :(得分:3)
您可以使用fabSize
attribute
app:fabSize="normal"
答案 2 :(得分:1)
试试这个:android:scaleType =&#34; center&#34;并尝试图像大小56dp。它对我有用。
答案 3 :(得分:0)
如果您想更改内部图像的大小,可以更改图像,只需选择您选择的图像并将其添加到浮动按钮。
答案 4 :(得分:0)
FAB
中的图像/图标可以用XML调整大小。
app:maxImageSize = "32dp"
这是您在“浮动操作按钮”中的图片大小。
app:fabCustomSize = "64dp"
这是您的浮动操作按钮的大小。