根據設備的API級別,我的應用的操作欄中的圖標顏色不同。我希望他們在所有設備上看起來都一樣。ActionBar中圖標的不同顏色
這是它的外觀在API 23,這是我希望它是在所有的設備:
,這是它的外觀在舊版本:
我有以下styles.xml:
值/風格。 XML
<style name="MyMaterialTheme" parent="MyMaterialTheme.Base">
</style>
<style name="MyMaterialTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
V21/styles.xml
<style name="MyMaterialTheme" parent="MyMaterialTheme.Base">
<item name="android:windowContentTransitions">true</item>
<item name="android:windowAllowEnterTransitionOverlap">true</item>
<item name="android:windowAllowReturnTransitionOverlap">true</item>
<item name="android:windowSharedElementEnterTransition">@android:transition/move</item>
<item name="android:windowSharedElementExitTransition">@android:transition/move</item>
</style>
這是動作條的佈局:
...
<android.support.v7.widget.Toolbar
android:id="@+id/my_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
...
,這是我的Manifest.xml
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:name="com.martinez.mario.rutapp.base.RutappApplication"
android:theme="@style/MyMaterialTheme" >
的一部分,怎樣才能讓箭頭和溢流圖標看起來白中的所有設備?
謝謝。
我剛剛意識到它對我的應用程序是一樣的。 +1 –
奇怪的是,我最近寫了一個應用程序,它在