I created a theme and placed it the values category:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="GreenText" parent="@android:style/TextAppearance">
<item name="android:textColor">#00FF00</item>
</style>
</resources>
// my Manifest file
<?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!?!?
To make theme you have to create following files.
themes.xml
styles.xml
AndroidManifest.xml