アクションバーが非表示になっているアクティビティがあり、ボタンをクリックしたときに表示したいのですが、レイアウトアクティビティを下にスクロールしたくない場合は、バーを重ねる必要があります。どうすればそのようなことができますか?
バーを非表示にするには
actionbar.hide();
getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LOW_PROFILE);
そしてそれを見えるようにするために:
actionbar.show();
getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_VISIBLE);
私のレイアウトは
<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"
>
<MyPager
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<MyPager>
</RelativeLayout>
前もって感謝します。