當圖像處於相對佈局時,我無法看到圖像按鈕的圖像。如果我使用不同的佈局,圖像工作正常。 我的佈局如下:相對佈局中的圖像按鈕android not shown 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圖片如下:
你想實現浮動按鈕? – 2015-03-02 09:47:30
是試驗浮動按鈕。 – Thebestshoot 2015-03-02 09:51:24
您可以使用框架佈局。 – 2015-03-02 10:17:28