AndroidManifest.xml 中修改程序布局的 Theme 主题

<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="zyf.GridViewTest"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon"
android:theme="@android:style/Theme.Light"          //这里可以设置主题
android:label="@string/app_name">
<activity android:name=".GridViewTest"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category
android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="2" />
</manifest>

posted @ 2013-12-20 10:51  爱编程hao123  阅读(751)  评论(0编辑  收藏  举报