以下文件定義我的應用程序使用的基本樣式:如何找到Android「主題XML風格」的所有可能性?
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Snapchat" parent="????" >
<item name="android:colorPrimaryDark">@color/Snapchat_violet</item>
<item name="android:colorPrimary">@color/Snapchat_blue</item>
<item name="android:colorAccent">@color/Snapchat_blue</item>
<item name="android:colorBackground">@color/Snapchat_white</item>
<item name="android:colorForeground">@color/Snapchat_yellow</item>
<item name="android:navigationBarColor">@color/Snapchat_grey</item>
</style>
</resources>
我想用一個標準的主題,父要繼承,但我無法找到所有的標準主題的列表以及它們相應的XML名稱/路徑。
對不起,如果這是一個新手問題,但我不能在android文檔中找到它。
https://developer.android.com/guide/topics/ui/themes.html#PlatformStyles歡迎您! –
好吧,我真的很笨,非常感謝你! –