I have style in res/values/strings.xml
Using xml Syntax Highlighting
- <?xml version="1.0" encoding="utf-8"?>
- <resources>
- <string name="app_name">TestActivity</string>
- <style name="MyStyle" parent="android:Theme" >
- <item name="android:textSize">15.5sp</item>
- <item name="android:textColor">#008</item>
- </style>
- </resources>
Parsed in 0.002 seconds, using GeSHi 1.0.8.4
I want set all attributes from MyStyle to single View. How I can do that without setTheme method ( its sets parametrs for all views ) and without using setTextColor,setTextSize methods ?


