不要在你的主题中请求 Window.FEATURE_SUPPORT_ACTION_BAR 并将 windowActionBar 设置为 false,以使用 Toolbar 替代。

19
我正在尝试使用汉堡菜单设置工具栏,这是我的代码,出现的错误是:
“此活动已经由窗口装饰提供了操作栏。不要请求 Window.FEATURE_SUPPORT_ACTION_BAR 并将 windowActionBar 设置为 false,以使用 Toolbar。”
问题在于我不知道我从哪里出错了,而且我已经尝试了一切。
MainActivity.java
    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);
    txResult = (TextView) findViewById(R.id.txResult);
    toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);
    mDrawer = (DrawerLayout) findViewById(R.id.drawer_layout);}

// Set a Toolbar to replace the ActionBar.


// Find our drawer view



private void setupDrawerContent(NavigationView navigationView) {
    navigationView.setNavigationItemSelectedListener(
            new NavigationView.OnNavigationItemSelectedListener() {
                @Override
                public boolean onNavigationItemSelected(MenuItem menuItem) {
                    selectDrawerItem(menuItem);
                    return true;
                }
            });
}

public void selectDrawerItem(MenuItem menuItem) {
    // Create a new fragment and specify the planet to show based on
    // position
    Fragment fragment = null;

    Class fragmentClass;
    switch(menuItem.getItemId()) {
        case R.id.nav_first_fragment:
            fragmentClass = MainActivity.class;
            break;
        case R.id.nav_second_fragment:
            fragmentClass = SecondActivity.class;
            break;
        case R.id.nav_third_fragment:
            fragmentClass = ThirdActivity.class;
            break;
        default:
            fragmentClass = MainActivity.class;
    }

    try {
        fragment = (Fragment) fragmentClass.newInstance();
    } catch (Exception e) {
        e.printStackTrace();
    }

    // Insert the fragment by replacing any existing fragment
    FragmentManager fragmentManager = getSupportFragmentManager();
    fragmentManager.beginTransaction().replace(R.id.flContent, fragment).commit();

    // Highlight the selected item, update the title, and close the drawer
    menuItem.setChecked(true);
    setTitle(menuItem.getTitle());
    mDrawer.closeDrawers();
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // The action bar home/up action should open or close the drawer.
    switch (item.getItemId()) {
        case android.R.id.home:
            mDrawer.openDrawer(GravityCompat.START);
            return true;
    }

    return super.onOptionsItemSelected(item);
}

MainActivity.xml

<!-- This DrawerLayout has two children at the root  -->
 <android.support.v4.widget.DrawerLayout
     xmlns:android="http://schemas.android.com/apk/res/android"
     xmlns:app="http://schemas.android.com/apk/res-auto"
     android:id="@+id/drawer_layout"
     android:layout_width="match_parent"
     android:layout_height="match_parent">

     <!-- This LinearLayout represents the contents of the screen  -->
     <LinearLayout
         android:layout_width="match_parent"
         android:layout_height="match_parent"
         android:orientation="vertical">

         <include
             layout="@layout/toolbar"
             android:layout_width="match_parent"
             android:layout_height="wrap_content" />

         <View
             android:layout_width="match_parent"
             android:layout_height="1dp"
             android:layout_marginTop="10dp"
             android:layout_marginBottom="10dp"
             android:background="#ddd"
            android:visibility="invisible" />

         <View
             android:layout_width="match_parent"
             android:layout_height="1dp"
             android:layout_marginTop="10dp"
             android:layout_marginBottom="10dp"
             android:background="#ddd"
             android:visibility="invisible" />

         <TextView
             android:id="@+id/txResult"
             android:layout_width="match_parent"
             android:layout_height="wrap_content"
             android:text="Rezultat:"
             android:textSize="20sp"
             android:visibility="invisible" />

         <Button
             android:layout_width="207dp"
             android:layout_height="wrap_content"
             android:text="Scan"
             android:radius="3dp"
             android:shape="oval"
             android:width="5px"
             android:color="#1a1a1a"
             android:onClick="callZXing"
             android:id="@+id/Button"
             android:layout_centerHorizontal="true"
             android:background="#F39C12"
             android:textColor="#ffffff"
             android:layout_above="@+id/button2"
             android:singleLine="false"
             android:soundEffectsEnabled="false" />

         <Button
             style="@style/CaptureTheme"
             android:layout_width="112dp"
             android:layout_height="68dp"
             android:text="No"
             android:id="@+id/button1"
             android:layout_weight="0.10"
             android:layout_gravity="center_horizontal"
             android:onClick="sendFirst"
             android:visibility="visible"
             android:layout_alignParentBottom="true"
             android:layout_centerHorizontal="true"
             android:layout_marginBottom="60dp" />

         <Button
             style="@style/CaptureTheme"
             android:layout_width="112dp"
             android:layout_height="20dp"
             android:text="Yes"
             android:id="@+id/button2"
             android:layout_gravity="center_horizontal"
             android:onClick="sendSecond"
             android:visibility="visible"
             android:layout_alignParentBottom="true"
             android:layout_centerHorizontal="true"
             android:layout_marginBottom="165dp"
             android:layout_weight="0.01" />


         <!-- The ActionBar displayed at the top -->

         <!-- The main content view where fragments are loaded -->
         <FrameLayout
             android:id="@+id/flContent"
             android:layout_width="match_parent"
             android:layout_height="match_parent" />
     </LinearLayout>

     <!-- The navigation drawer that comes from the left -->
     <!-- Note that `android:layout_gravity` needs to be set to 'start' -->
     <android.support.design.widget.NavigationView
         android:id="@+id/nvView"
         android:layout_width="wrap_content"
         android:layout_height="match_parent"
         android:layout_gravity="start"
         android:background="@android:color/white"
         app:menu="@menu/drawer_view" /> </android.support.v4.widget.DrawerLayout>
AndroidManifest.xml
<Activity
    android:name="com.google.zxing.client.android.CaptureActivity"
    android:configChanges="orientation|keyboardHidden"
    android:label="ZXing ScanBar"
    android:theme="@style/Theme.AppCompat.Light.NoActionBar"
    android:windowSoftInputMode="stateAlwaysHidden">

样式.xml

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <item name="windowActionBar">false</item>
    <item name="colorPrimary">#673AB7</item>
    <item name="colorPrimaryDark">#512DA8</item>
    <item name="colorAccent">#FF4081</item>
    <item name="windowNoTitle">true</item>

</style>


<!-- Application theme. -->
<style name="AppBaseTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <item name="windowActionBar">false</item>
    <item name="colorPrimary">#673AB7</item>
    <item name="windowNoTitle">true</item>         
    <item name="colorPrimaryDark">#512DA8</item>
    <item name="colorAccent">#FF4081</item>
    <!-- All customizations that are NOT specific to a particular API-level can go here. -->    
</style>

工具栏.xml

<android.support.v7.widget.Toolbar
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/toolbar"
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    android:fitsSystemWindows="true"
    android:minHeight="?attr/actionBarSize"
    app:theme="@style/Theme.AppCompat.Light.NoActionBar"
    android:background="?attr/colorPrimaryDark">  
</android.support.v7.widget.Toolbar>

在主题属性中移除 windowActionBar 并查看是否有效。 - Rishabh Tatiraju
我添加了我的活动,移除了windowActionBar,但没有发生任何事情。 - Boghy Dickenson
你能给我展示一下你的MainActivityAndroidManifest.xml吗? 你目前已经发布了CaptureActivityAndroidManifest.xml - Frosty
2个回答

14

你不需要这个:

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

您的主题父级Theme.AppCompat.Light.NoActionBar已经声明没有操作栏(但有工具栏)。


5

我遇到了一个类似的问题,其中一个活动中有一个类似以下的代码:

在 styles.xml 文件中:

<style name="AppTheme.NoActionBar">
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
</style>

在 manifest.xml 文件中:
<application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:theme="@style/AppTheme">

        ......

        <activity
        android:name=".ServicesActivity"
        android:theme="@style/AppTheme.NoActionBar"
        android:exported="false" />

    </application>

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接