浮动动作按钮由片段android 4.4隐藏

时间:2018-05-13 06:10:53

标签: android xml user-interface

我的浮动操作按钮位于主活动中,片段选项卡隐藏了我的android 4.4设备上的浮动操作按钮。在我的Android 7.0设备上正常工作。海拔似乎不起作用。我将如何展示它?

在Android 4.4上 enter image description here

在Android 7.0上 enter image description here

我的浮动动作按钮xml

<android.support.design.widget.FloatingActionButton
    android:id="@+id/fab"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_alignParentBottom="true"
    android:layout_marginBottom="30dp"
    android:layout_marginRight="15dp"
    android:src="@drawable/create_icon"
    android:elevation="4dp"
    app:backgroundTint="@color/colorPrimary"
    app:fabSize="normal" />

1 个答案:

答案 0 :(得分:0)

使用app:elevation代替android:elevation,因为FloatingActionButton属于支持库。它应该工作。