res/values/styles.xml
author Da Risk <da_risk@beem-project.com>
Wed, 31 Oct 2012 23:11:14 +0100
changeset 1005 4c7edc276676
parent 986 2c85a0f62ab0
permissions -rw-r--r--
Switch to Florian Shmauss maintained version of asmack. See doc/asmack-beem/README.txt for more information on how to build the asmack jar. The upstream asmack has a better implementation of XEP-0115 EntityCapabilities. So this commit remove the specific Beem implementation of this XEP and switch to the asmack one.

<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">
	<style name="Label">
		<item name="android:textAppearance">?android:attr/textAppearanceMedium</item>
		<item name="android:textStyle">bold</item>
		<item name="android:capitalize">characters</item>
		<item name="android:focusable">false</item>
		<item name="android:inputType">textNoSuggestions</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>
	
	<style name="TitleStripTextAppearance" parent="@android:style/TextAppearance">
        <item name="android:textSize">18sp</item>
        <item name="android:textStyle">bold</item>
    </style>
	
	
<!-- Other style -->

</resources>