当应用未设置主题本身时,它将调用系统默认主题。
现在android默认主题是黑色背景和白色文本。我想根据自己的意愿设置默认主题。
谁知道在android项目中哪里可以设置默认主题?
答案 0 :(得分:0)
android manifest.xml具有attribut android:theme="resource or theme"
。此属性将其设置为全黑或光或您自己声明的主题。要使用您自己的布局,您可以在res / values文件夹中声明并构建自己的布局。
以下是有关它的文档:http://developer.android.com/guide/topics/manifest/application-element.html
答案 1 :(得分:0)
在manifest.xml文件中,您可以设置默认主题,如
<application
android:theme="@android:style/Theme.Black"
/>