gpt4 book ai didi

Android 工具栏覆盖内容

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:02:22 25 4
gpt4 key购买 nike

我正在使用新的工具栏并将其设置为 supportActionBar。我的问题是它覆盖了我的内容。

这是我用来设置工具栏的代码。

 public void setupNavBar() {
mToolbar = (Toolbar) findViewById(R.id.toolbar_actionbar);
if (mToolbar != null) {
setSupportActionBar(mToolbar);

mActionBar = getSupportActionBar();
mActionBar.setDisplayShowHomeEnabled(true);
mActionBar.setDisplayShowTitleEnabled(false);
}
}

样式:

    <!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
</style>

<style name="ToolBarStyle" parent="">
<item name="android:elevation">5dp</item>
<item name="popupTheme">@style/ThemeOverlay.AppCompat.Light</item>
<item name="theme">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item>
</style>

和布局:

<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"
tools:context=".MainActivity">

<android.support.v7.widget.Toolbar
style="@style/ToolBarStyle"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/material_blue_grey_800"
android:minHeight="@dimen/abc_action_bar_default_height_material"
android:id="@+id/toolbar_actionbar"

/>

<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#478"
android:text="@string/hello_world" />

我认为通过调用 setSupportActionbar 系统会负责将内容定位在工具栏 View 下方,但我所看到的并非如此。

什么是正确使用工具栏的方法。我有一些 Activity ,我希望工具栏对它后面的内容透明,而其他 Activity 我希望它对下面的内容不透明。

谢谢

最佳答案

在 TextView 中使用下面

    <TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#478"
android:text="@string/hello_world"
android:layout_below="@+id/toolbar_actionbar"
/>

关于Android 工具栏覆盖内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28785233/

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