在支持库FloatingActionButton中引入。可以选择使用app:borderWidth="2dp"
设置按钮的边框宽度,但是如何设置边框颜色?
我为该porpuse创建了一个自定义drawable,例如:
<item>
<shape android:shape="oval">
<solid android:color="@color/color1" />
<stroke android:width="2dp" android:color="@android:color/white" />
</shape>
</item>
并尝试使用FloatingActionButton的android:background
和app:backgroundTint
属性来设置背景。他们没有工作。请注意,app:backgroundTint似乎只是为了接受颜色而不是可绘制的
任何人都知道任何解决方法吗?
答案 0 :(得分:0)
您是否尝试过android:src
属性?
试试这个
<android.support.design.widget.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/your_drawable"
andriod:scaleType="center" /> <!-- You need to scale your src. ->
我希望它能奏效。
修改强>
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/your_icon" /> <!-- include your icon here -->
<item>
<shape android:shape="oval"> <!-- or rectangle -->
<stroke
android:width="2dp"
android:color="@android:color/white" />
</shape>
</item>
</layer-list>
您可以在drawable
形状xml
中添加图标。并为您的图标添加边框并将其应用于FAB
。
我在形状文件中添加了hdpi
图标,这是我得到的结果。
根据Google的设计规格,实际的可绘制尺寸应 24dp 。