【问题标题】:Floating action button is giving unneeded colored border浮动操作按钮提供了不需要的彩色边框
【发布时间】:2017-10-07 05:04:56
【问题描述】:

FloatingActionButton 给出了搞笑的粉红色边框,尽管我不需要另一个是我附在FloatingActionButton 中的原始图片

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.android.myapplication.MainActivity">

<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:src="@drawable/screen_logo"/>
<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:layout_alignParentRight="true"
    android:layout_alignParentBottom="true"
    >
    <android.support.design.widget.FloatingActionButton
        android:id="@+id/view"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/view"
        android:layout_margin="5dp"/>
    <android.support.design.widget.FloatingActionButton
        android:id="@+id/search"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="5dp"
        android:src="@drawable/search"/>
    <android.support.design.widget.FloatingActionButton
        android:id="@+id/add"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin='5dp'
        android:src="@drawable/add"/>
</LinearLayout>

【问题讨论】:

  • 分享浮动操作按钮的 xml 布局
  • 附上问题代码

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


【解决方案1】:

colorAccent 中的color.xml 更改为蓝色

或使用app:backgroundTint

【讨论】:

    猜你喜欢
    • 2016-01-07
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2019-01-16
    • 1970-01-01
    • 2015-06-25
    • 2015-03-15
    • 2015-09-07
    相关资源
    最近更新 更多