我有一個活動,其中的操作欄是隱藏的,當我點擊一個按鈕我希望它是可見的,但我不希望佈局活動向下滾動,欄必須重疊。 我該怎麼做這樣的事情?Android:使操作欄重疊活動佈局
要隱藏欄我使用
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>
在此先感謝。
粘貼一些代碼或佈局,根據這個描述很難說些什麼。 – Egor