浮动动作按钮方形

时间:2015-07-03 08:56:35

标签: android button action floating floating-action-button

当我为我的工厂设置颜色时,它看起来像是这样:

enter image description here

我的布局xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivity$PlaceholderFragment">

<android.support.design.widget.FloatingActionButton
    android:id="@+id/fab"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/ic_add"
    android:layout_marginRight="20dp"
    app:fabSize="normal"
    android:elevation="@dimen/fab_elevation"
    android:background="#000000"
    android:stateListAnimator="@animator/fab_anim"
    android:layout_gravity="center_horizontal"
    android:layout_alignParentBottom="true"
    android:layout_alignParentEnd="true" />

颜色也不会改变。 谁能帮助我理解我做错了什么?

我还尝试使用@color链接,但它崩溃了,可绘制的(ex. android:background="@drawable/fab_background")背景没有任何反应。

这是可绘制的fab_background.xml

<selector xmlns:android="http://schemas.android.com/apk/res/android">

<item>
    <ripple android:color="@color/fab_color_1_muted">
        <item>
            <shape>
                <solid android:color="@color/fab_color_1" />
            </shape>
        </item>
    </ripple>
</item>

4 个答案:

答案 0 :(得分:6)

在xml中使用此代码

应用:边框宽度=&#34; 0dp&#34;

<android.support.design.widget.FloatingActionButton
    android:id="@+id/fab"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/ic_add"
    android:layout_marginRight="20dp"
    app:fabSize="normal"
    android:elevation="@dimen/fab_elevation"
    android:background="#000000"
    app:borderWidth="0dp"
    android:stateListAnimator="@animator/fab_anim"
    android:layout_gravity="center_horizontal"
    android:layout_alignParentBottom="true"
    android:layout_alignParentEnd="true" />

答案 1 :(得分:3)

使用

app:backgroundTint="@android:color/holo_green_dark"

(例如)设置fab的颜色。结果如下。 Taken from this -tested- code snippet.

enter image description here

同时编辑:“奇怪的绿色”应该来自你的强调色。那是默认的颜色工厂。

答案 2 :(得分:0)

只需添加app:borderWidth="0dp"

答案 3 :(得分:0)

只需设置app:borderWidth =“0dp”解决问题。