我创建了一个主题并将其设置为值类别:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="GreenText" parent="@android:style/TextAppearance">
<item name="android:textColor">#00FF00</item>
</style>
</resources>
//我的清单文件
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.DmitriMakovetskiy"
android:versionCode="1"
android:versionName="4.0" >
<uses-sdk android:minSdkVersion="3" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
**android:theme="@style/GreenText"**
>
<activity
android:label="@string/app_name"
android:name=".LayoutsActivity"
>
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
The application cant launch.. what am I doing wrong!?!?
答案 0 :(得分:0)
要创建主题,您必须创建以下文件。
<强>的themes.xml 强>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="MyTheme" parent="android:style/Theme.NoTitleBar">
<item name="android:textViewStyle">@style/MyTheme.TextView</item>
</style>
</resources>
<强> styles.xml 强>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="MyTheme.Textview" parent="@android:style/TextAppearance">
<item name="android:textColor">#00FF00</item>
</style>
</resources>
<强>的AndroidManifest.xml 强>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" android:theme="@style/MyTheme">
....
我希望以上内容能为您提供帮助。
谢谢
答案 1 :(得分:0)
我很确定这是一个错字,但你实际上并没有写**对吗?
**android:theme="@style/GreenText"**
另外,我不确定您是否可以将TextAppereance设为父级。试试没有。
另一件事是,你的应用程序在此之前工作了吗?因为您正在使用活动的相对名称(“.LayoutsActivity”),所以您应该使用完整的包名称。
您的XML是否正在编译?没有错误就很难调试。