相对布局中的图像按钮 android 未显示图像

Image button in relative layout android not showing the image

当图像处于相对布局时,我看不到图像按钮的图像。如果我使用不同的布局,图像工作正常。 我的布局如下:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    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">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/cardList"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        />
    <ImageButton
    android:layout_width="56dp"
    android:layout_height="56dp"
    android:src="@drawable/plus"
    android:layout_alignParentBottom="true"
    android:layout_alignParentRight="true"
    android:layout_marginRight="16dp"
    android:layout_marginBottom="16dp"
    android:id="@+id/fab"
    android:elevation="1dp"
    />

</RelativeLayout>

如果我在其他布局中设置相同的图像,则效果很好。谁能给我一些注意事项。 日志中没有错误或警告。 实际的png图片如下:

如果你想实现浮动按钮,更好的方法是使用现有的库:

在您的 build.gradle 依赖项中添加此行:

compile 'com.getbase:floatingactionbutton:1.3.0'

并将布局更改为:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
            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">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/cardList"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        />

     <com.getbase.floatingactionbutton.AddFloatingActionButton
        android:id="@+id/common_ring_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:layout_marginBottom="10dp"
        android:layout_marginEnd="10dp"
        android:layout_marginRight="10dp"/>

</RelativeLayout>

如果您想自定义浮动按钮,例如更改颜色,请将此行添加为 RelativeLayout 属性:

xmlns:fab="http://schemas.android.com/apk/res-auto"

并将下面的属性添加到 AddFloatingActionButton xml

fab:fab_colorNormal="@color/floating_button_bg"
fab:fab_colorPressed="@color/floating_button_bg_pressed"