我搜索了很多,但似乎沒有任何工作在我的情況。這是我想用相對佈局實現的。 如何將一個視圖放在xml中的另一個相關佈局中
下面是我的xml代碼。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:focusable="true">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/microphone" />
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@color/white"
android:padding="@dimen/padding_16">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:drawableRight="@drawable/arrow"
android:text="@string/next"
android:textAllCaps="true" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableLeft="@drawable/arrow"
android:text="@string/previous"
android:textAllCaps="true" />
</RelativeLayout>
通過這種麥克風下一上一頁地帶的背後隱藏。我想有一些參數可以控制z軸上的視圖高度,但我不記得這一點,它會在Lolipop下工作。請幫忙。
好的,我發現'android:elevation =「10dp」'通過增加z軸帶來視圖。但它會在Lolipop下工作嗎? –
'沒有什麼可以工作的......可能是[** FloatingActionButton **](https://developer.android.com/reference/android/support/design/widget/FloatingActionButton.html)。 –
只需將按鈕定義移動到佈局的最後。 – tynn