これを XML で設定する方法がわかりません...
その後ろにある 2 つのフラグメントの上にボタンを配置しようとしています。
私が欲しいもの:
私が持っているもの:
私のコード:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:orientation="horizontal"
tools:context=".VulgarActivity"
>
<Button
android:id="@+id/luckBtn"
android:layout_gravity="bottom"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/feel_lucky"
android:textColor="#ffffff"
/>
<fragment
android:name="com.wizardknight.visionaryvulgarity.FirstWord"
android:id="@+id/firstWord"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent"
/>
<fragment
android:name="com.wizardknight.visionaryvulgarity.LastWord"
android:id="@+id/lastWord"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent"
/>
</LinearLayout>