gpt4 book ai didi

android - 工具栏 - findViewbyID 返回 null

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

为什么我无法在我的布局中找到我的 Toolbar

setContentView(R.layout.activity_main);

toolbar = (Toolbar) findViewById(R.id.toolbar);
if (toolbar != null) {
setSupportActionBar(toolbar);
getSupportActionBar().setHomeButtonEnabled(true);
}

在那之后,工具栏仍然是空的。

activity_man.xml:

<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
tools.context=".PlayerActivity">

<include
android:id="@+id/toolbar"
layout="@layout/toolbar"/>
<ImageView
android:id="@+id/background_image"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"/>
: (goes on)

编辑:

工具栏.xml:

<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"/>

谢谢!

最佳答案

您的代码运行良好,您可能没有禁用默认操作栏:

更改 styles.xml 中的以下内容以删除操作栏

<style name="AppTheme" parent="@style/Theme.AppCompat.Light.NoActionBar">

<item name="windowActionBar">false</item>

</style>

使用 toolbar.bringToFront(); 将工具栏置于最前面

关于android - 工具栏 - findViewbyID 返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27469219/

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