2016-05-14 71 views
-1

我想添加一個類似於soundclouds的操作欄。我正在按照關於如何自定義android developer網站上的操作欄的說明進行操作。錯誤似乎是已經提供了操作欄,但我正在嘗試創建另一個。非法狀態異常。活動無法啓動,因爲工具欄

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. 

這裏是的onCreate()

Toolbar toolbar = (Toolbar) findViewById(R.id.main_toolbar); 
setSupportActionBar(toolbar); 
addBirthdayFragment(); 

這裏是佈局文件:

<?xml version="1.0" encoding="utf-8"?> 
<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" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    tools:context=".view.MainActivity"> 

    <android.support.v7.widget.Toolbar 
     android:id="@+id/main_toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="?attr/actionBarSize" 
     android:background="?attr/colorPrimary" 
     android:elevation="4dp" 
     android:theme="@style/ThemeOverlay.AppCompat.ActionBar" 
     app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/> 

</RelativeLayout> 

我試圖只是刪除XML代碼和Java代碼工具欄,分別在佈局和onCreate中,但是這不起作用;同樣的錯誤仍然存​​在。這一定與我正在使用的主題有關,但我不知道究竟是什麼。它讓我困惑,因爲主題是默認主題,所以我沒有想到這一點。

這裏是我的主題

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> 
     <!-- Customize your theme here. --> 
     <item name="colorPrimary">@color/colorPrimary</item> 
     <item name="colorPrimaryDark">@color/colorPrimaryDark</item> 
     <item name="colorAccent">@color/colorAccent</item> 
</style> 

方問題:

我想達到的SoundCloud行動吧,這似乎是標籤式的外觀。如果我想要this結果,或者是否存在其他用於選項卡式操作欄的其他小部件,我應該怎麼辦?

謝謝你的幫助。

+0

你爲什麼要恨? –

回答

0

Android正在抱怨,因爲您從未告訴過您將使用工具欄而不是Android提供的ActionBar。允許Android瞭解這一點,你需要把這些東西加到你的風格:

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

如果您想有時使用Android動作條和你的一個工具欄一些其他的時間,你可以添加上述兩行到一個新的風格擴展您的AppTheme,並使用了在AndroidManifest.xml中:

<!-- Use this one in the Manifest when you want to use the native ActionBar --> 
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> 
    <!-- your styling here --> 
</style> 

<!-- Use this one when you want to implement your own Toolbar --> 
<style name="AppTheme.NoActionBar" parent="AppTheme"> 
    <item name="windowActionBar">false</item> 
    <item name="windowNoTitle">true</item> 
</style> 
+0

感謝您將我的答案標記爲正確的答案:)至於ActionBar選項卡,您可以檢查以下內容:http://developer.android.com/training/implementing-navigation/lateral.html#tabs –

0

你的代碼是:

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> 
     <!-- Customize your theme here. --> 
     <item name="colorPrimary">@color/colorPrimary</item> 
     <item name="colorPrimaryDark">@color/colorPrimaryDark</item> 
     <item name="colorAccent">@color/colorAccent</item> 
</style> 

parent="Theme.AppCompat.Light.DarkActionBar"說黑暗行動起來吧。您需要將其更改爲NoActionBar。

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> 
     <!-- Customize your theme here. --> 
     <item name="colorPrimary">@color/colorPrimary</item> 
     <item name="colorPrimaryDark">@color/colorPrimaryDark</item> 
     <item name="colorAccent">@color/colorAccent</item> 
</style> 
+0

感謝您的幫助。完美工作。 –

+0

非常歡迎。請接受答案,以便其他人可以在頂部看到它。 – learner

相關問題