Android 全局使用自定义主题
示例
在themes.xml中:
<style name="AppTheme" parent="Theme.AppCompat"> <!-- Theme attributes here --> </style>
在AndroidManifest.xml中:
<application android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme"> <!-- Activity declarations here --> </application>