试图提供ToolBar而不是ActionBar

时间:2016-01-15 11:17:50

标签: android

我想替换ToolBar而不是ActionBar。这是我的styles.xml内容

<resources>
...
<style name="MyTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <item name="android:windowNoTitle">true</item>
    <item name="android:windowActionBar">false</item>
</style>
...
</resources>

这就是我的清单。

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/MyTheme">
    <activity
        android:name=".MainActivity"
        android:label="@string/app_name"
        android:theme="@style/MyTheme">
        <intent-filter>
            <action android:name="android.intent.action.MAIN"/>

            <category android:name="android.intent.category.LAUNCHER"/>
        </intent-filter>

    </activity>
    <service android:name=".CustomFloating" android:label="Floating Class"/>
</application>

而且,这是布局,我希望实现这种风格。

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="sports.scores.floating.MainActivity">
<android.support.v7.widget.Toolbar
    android:id="@+id/my_awesome_toolbar"
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    android:title="@string/app_name"
    android:minHeight="?attr/actionBarSize"
    style="@style/MyTheme"/>

<include layout="@layout/content_main"/>

<android.support.design.widget.FloatingActionButton
    android:id="@+id/fab"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom|end"
    android:layout_margin="@dimen/fab_margin"
    android:src="@android:drawable/ic_dialog_email"/>

</android.support.design.widget.CoordinatorLayout>

我在所有布局文件中都遇到了同样的错误,尽管我已将windowActionBar的值设置为false。这是我的MainActivity类内容。

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Toolbar toolbar = (Toolbar) findViewById(R.id.my_awesome_toolbar);
    setSupportActionBar(toolbar);//line number 34
    ...
}

但是,我正在得到这个堆栈跟踪。

Caused by: java.lang.IllegalStateException: This Activity already has an action bar supplied by the window decor. Do not request Window.FEATURE_SUPPORT_ACTION_BAR and set windowActionBar to false in your theme to use a Toolbar instead.
        at android.support.v7.app.AppCompatDelegateImplV7.setSupportActionBar(AppCompatDelegateImplV7.java:198)
        at android.support.v7.app.AppCompatActivity.setSupportActionBar(AppCompatActivity.java:99)
        at sports.scores.floating.MainActivity.onCreate(MainActivity.java:34)

有人可以帮我解决这个问题。我希望用 my_awesome_toolbar 替换此操作栏。

1 个答案:

答案 0 :(得分:3)

修改样式

 <resources>
...
<style name="MyTheme" parent="Theme.AppCompat.Light.NoActionBar">

</style>
...
</resources>