不要在主题中请求Window.FEATURE_SUPPORT_ACTION_BAR并将windowActionBar设置为false以使用工具栏代替

时间:2016-02-28 18:49:47

标签: android

我正在尝试设置一个带有汉堡菜单的工具栏,这是我的代码,而且 错误是:

  

此活动已有窗口装饰提供的操作栏。   不要请求Window.FEATURE_SUPPORT_ACTION_BAR并设置   在您的主题中,windowActionBar为false以使用工具栏。

问题是我不知道从哪里得到错误,和 事实上,我尝试了一切。

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">

Styles.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>

Toolbar.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>

1 个答案:

答案 0 :(得分:9)

你不需要这个:

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

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