gpt4 book ai didi

Android:让Actionbar重叠Activity布局

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:48:23 26 4
gpt4 key购买 nike

我有一个 Activity,其中 Actionbar 是隐藏的,当我单击一个按钮时,我希望它可见,但我不希望布局 Activity 向下滚动,该栏必须与它重叠。我怎么能做这样的事情?

隐藏我使用的栏

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>

提前致谢。

最佳答案

您可能正在寻找 ActionBar 覆盖模式。通过在 setContentView() 之前调用 requestWindowFeature(Window.FEATURE_ACTION_BAR_OVERLAY); 为单个 Activity 启用它。或者通过将 android:windowActionBarOverlay 设置为 true 在主题中。

关于Android:让Actionbar重叠Activity布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14281427/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com