android – 在支持库中设置FloatingActionButton的边框颜色

前端之家收集整理的这篇文章主要介绍了android – 在支持库中设置FloatingActionButton的边框颜色前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
支持库中引入了 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>

并尝试使用android:background和app:FloatingActionButton的backgroundTint属性来设置背景.他们没有工作.请注意,app:backgroundTint似乎只是为了接受颜色而不是可绘制的

有人知道任何解决方法吗?

解决方法

你试过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>

您可以将图标添加到可绘制的形状xml中.并为您的图标添加边框并将其应用于FAB.

我在我的形状文件添加了一个hdpi图标,这是我得到的结果.

根据谷歌的设计规格,实际的可绘制尺寸应为24dp.

原文链接:https://www.f2er.com/android/315082.html

猜你在找的Android相关文章