res/values/styles.xml
author Da Risk <da_risk@beem-project.com>
Thu, 25 Aug 2011 14:51:07 +0200
changeset 901 6e5999172eb1
parent 884 5315a5713dd5
child 952 0867bf998775
permissions -rw-r--r--
When saving capabilities replace the '/' character by a '.' The character '.' is not in the base64 table and can replace the file separator char '/' in unix. fix #366

<?xml version="1.0" encoding="utf-8"?>
<resources>
	<style name="Label">
		<item name="android:textSize">18sp</item>
		<item name="android:textStyle">bold</item>
		<item name="android:typeface">sans</item>
		<item name="android:capitalize">characters</item>
		<item name="android:textColor">#FFFFFF</item>
		<item name="android:focusable">false</item>
		<item name="android:padding">4px</item>
	</style>
	<style name="CheckBoxLabel" parent="@style/Label">
		<item name="android:enabled">true</item>
	</style>
	<style name="Theme.BEEM.Default" parent="@android:style/Theme">
<!--		<item name="android:windowBackground">@drawable/background</item>-->		
	</style>
	

<!-- Old PC style -->

	<style name="OldTheme">
		<item name="android:textViewStyle" >@style/OldThemeTextView</item>
	</style>
	<style name="OldThemeTextView" parent="@android:style/Widget.TextView">
		<item name="android:textColor">#ff009900</item>
		<item name="android:background">@color/black</item>
	</style>
	
	
<!-- Other style -->

</resources>