私の研究から以前に答えられた質問のように聞こえますが、私は解決策を見つけることができませんでした。私のレイアウトは、おおよそ以下の通りです:私のフラグメントの上にビューを維持する方法
メインエリアは、私がフラグメントを交換/追加しますコンテナである、と私は下のナビゲーションメニューを置く場所底があります。ピンクのビューは、私がメニューの上に置く必要があるボタンです(それは動作しません)。
メインビューにフラグメントを追加するたびに、TextViewがコンテナビューの後に追加されても、「メニュー」テキストが消えます。下のメニューコンテナの後に追加されるピンクのボタンと同じです(下のmy XMLを参照)。
「メニュー」TextViewとピンクのボタンの両方を常に私のフラグメントの上に置くにはどうしたらいいですか?
この
は私のxmlです:<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:background="#eee"
tools:context="com.wecancer.wecancer.activities.Menu">
<FrameLayout
android:id="@+id/main_container_view"
android:layout_width="match_parent"
android:layout_height="520dp"
android:layout_marginBottom="0dp"
>
</FrameLayout>
<TextView
android:id="@+id/main_center_tv"
android:layout_centerVertical="true"
android:textSize="24sp"
android:layout_centerHorizontal="true"
android:text="@string/menu"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<FrameLayout
android:layout_alignParentBottom="true"
android:id="@+id/main_bottom_menu_container"
android:layout_width="match_parent"
android:background="@color/lightGray"
android:layout_height="40dp"
>
</FrameLayout>
<Button
android:elevation="1dp"
android:id="@+id/menu_plus_img"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
android:background="@color/colorAccent"
android:layout_width="70dp"
android:layout_marginBottom="0dp"
android:layout_height="70dp"
tools:targetApi="lollipop" />
</RelativeLayout>
実用的な解決策をください。それは本当の答えではない、私は順序が正しいと言うと、あなたは "単に順序を変更する"と言って以来。 –