我剛創建了一個浮動動作按鈕,並將屬性aliign父母的底部和右側,但它沒有顯示我不知道我做錯了什麼,這是我的xml代碼................................................如何使浮動動作按鈕在頁面底部右側
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/activity_show_order"
android:layout_width="368dp"
android:layout_height="624dp"
tools:layout_editor_absoluteX="0dp"
tools:layout_editor_absoluteY="0dp"
tools:context="abtech.waiteriano.com.waitrer.PaymentActivity">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="60dp"
android:background="#f0ff4800"
android:minHeight="?attr/actionBarSize" />
<ListView
android:layout_width="fill_parent"
android:id="@+id/showOrderListID"
android:layout_height="wrap_content"
tools:layout_editor_absoluteY="8dp"
tools:layout_editor_absoluteX="8dp"
android:layout_alignParentStart="true"
android:layout_below="@id/toolbar"/>
<TextView
android:id="@+id/tvPayment"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/showOrderListID"
android:text="Payment Type:" />
<Spinner
android:id="@+id/paymentSpinner"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:background="@drawable/spinner_bg"
android:stateListAnimator="@drawable/spinner_sla"
android:layout_below="@+id/showOrderListID"
android:layout_alignBottom="@+id/tvPayment"
android:layout_toEndOf="@+id/tvPayment" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:src="@drawable/pay" />
</RelativeLayout>
的android:layout_width = 「368dp」 機器人:layout_height = 「624dp」 刪除,並使用match_parent –