私はフルスクリーンのオーバーレイビューを表示しようとしています。まず、隠しオーバーレイでxmlをセットアップし、適切なときに表示します。ここに私のレイアウトは次のとおりです。ここでAppBarLayoutをオーバーラップするようにする
<?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:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/appBar"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"/>
</android.support.design.widget.AppBarLayout>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/appBar"
android:textColor="#FFFFFF"
android:text="Hello World!" />
<View
android:id="@+id/overlay"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clickable="true"
android:background="#80FF0000"/>
</RelativeLayout>
は結果である:
そして、私はそのようになる必要があります。だから、私は成功し、すべての重複してい
AppBarLayoutを除く画面。私のビューをAppBarLayoutの後ろに置かないようにするには?
を@WhiteNinjaねえ、私の答えはあなたの問題を解決しているのですか? – Karoly
@ Karoly、nope ..私の質問は、idが "overlay"のViewがAppBarLayoutと重複していないことと、それを修正する理由です。 – WhiteNinja