FloatingActionButton提升不适用于棒棒糖前设备

时间:2016-09-15 12:13:40

标签: android elevation

  <?xml version="1.0" encoding="utf-8"?>
 <LinearLayout 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:orientation="vertical">
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/colorPrimary"
    android:minHeight="56dp"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
    app:titleTextAppearance="@style/ToolbarTitle" >
</android.support.v7.widget.Toolbar>
<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <android.support.design.widget.FloatingActionButton
        android:id="@+id/myFAB"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentBottom="true"
        android:layout_marginRight="8dp"
        android:clickable="true"
        android:layout_marginBottom="8dp"
        android:src="@drawable/ic_fab_star"
        app:borderWidth="0dp"
        app:elevation="10dp"
        />
    <RelativeLayout
        android:id="@+id/relative6"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
    </RelativeLayout>
    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_below="@id/relative6"
        android:orientation="vertical">
        <ListView
            android:id="@+id/list_history"
            android:layout_width="match_parent"
            android:layout_height="0dip"
            android:layout_gravity="start"
            android:layout_weight="1"
            android:clickable="false"
            android:cacheColorHint="@android:color/transparent"
            android:choiceMode="singleChoice"
            android:divider="@null"
            android:dividerHeight="0dp" />
    </LinearLayout>
</RelativeLayout>
 </LinearLayout>

这是我的xml,升级对于棒棒糖前设备不起作用。

完美适用于新设备nexus 5,6我测试它们。

但是在旧设备运行套件kat上没有工作。

非常感谢您的帮助和丰富的信息。

1 个答案:

答案 0 :(得分:0)

只需设置app:borderWidth="0dp"即可解决此问题。

注意:不要忘记将xmlns:app="http://schemas.android.com/apk/res-auto"添加到您的根布局。

为我工作

<android.support.design.widget.FloatingActionButton
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/your_id"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:layout_marginBottom="@dimen/floating_button_margin_bottom"
        android:layout_marginRight="@dimen/floating_button_margin_right"
        app:elevation="@dimen/floating_button_elevation"
        app:borderWidth="0dp"
        app:rippleColor="@color/your_ripple_color"
        app:backgroundTint="@color/your_bg_color" />