2012-10-03 13:30:33 -04:00
|
|
|
<!--
|
|
|
|
~ Copyright (c) 2009-2011. Created by serso aka se.solovyev.
|
|
|
|
~ For more information, please, contact se.solovyev@gmail.com
|
|
|
|
~ or visit http://se.solovyev.org
|
|
|
|
-->
|
|
|
|
|
|
|
|
<resources>
|
|
|
|
|
|
|
|
<style name="WindowTitle">
|
|
|
|
<item name="android:singleLine">true</item>
|
|
|
|
<item name="android:textAppearance">@style/TextAppearance_WindowTitle</item>
|
|
|
|
<item name="android:shadowColor">#BB000000</item>
|
|
|
|
<item name="android:shadowRadius">2.75</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="TextAppearance_WindowTitle">
|
|
|
|
<item name="android:textColor">#fff</item>
|
|
|
|
<item name="android:textSize">14sp</item>
|
|
|
|
<item name="android:textStyle">bold</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
|
|
<style name="default_text_size">
|
|
|
|
<item name="android:textSize">@dimen/text_size</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="button_style">
|
|
|
|
<item name="android:layout_width">wrap_content</item>
|
|
|
|
<item name="android:layout_height">wrap_content</item>
|
|
|
|
<item name="android:focusable">true</item>
|
2012-10-03 14:51:32 -04:00
|
|
|
<item name="android:background">@drawable/metro_blue_button</item>
|
2012-10-03 13:30:33 -04:00
|
|
|
<item name="android:textSize">@dimen/button_text_size</item>
|
|
|
|
<item name="android:textColor">@color/button_text_color</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="keyboard_button_style">
|
|
|
|
<item name="android:layout_width">fill_parent</item>
|
|
|
|
<item name="android:layout_height">fill_parent</item>
|
|
|
|
<item name="android:layout_weight">1</item>
|
|
|
|
<item name="android:focusable">true</item>
|
|
|
|
<item name="android:background">@drawable/default_button_dark</item>
|
|
|
|
<item name="android:layout_margin">@dimen/button_margin</item>
|
|
|
|
<item name="android:textSize">@dimen/keyboard_button_text_size</item>
|
|
|
|
<item name="android:textColor">@color/button_text_color</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="editor_style" parent="default_text">
|
|
|
|
<item name="android:gravity">left|top</item>
|
|
|
|
<item name="android:layout_width">fill_parent</item>
|
|
|
|
<item name="android:layout_height">fill_parent</item>
|
|
|
|
<item name="android:textSize">@dimen/editor_text_size</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="display_style" parent="default_text">
|
|
|
|
<item name="android:gravity">top|right</item>
|
|
|
|
<item name="android:layout_width">match_parent</item>
|
|
|
|
<item name="android:layout_height">match_parent</item>
|
|
|
|
<item name="android:textSize">@dimen/display_text_size</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="about_style" parent="default_text">
|
|
|
|
<item name="android:gravity">center</item>
|
|
|
|
<item name="android:layout_width">fill_parent</item>
|
|
|
|
<item name="android:layout_height">fill_parent</item>
|
2012-10-03 14:51:32 -04:00
|
|
|
<item name="android:textSize">@dimen/fragment_text_size</item>
|
2012-10-03 13:30:33 -04:00
|
|
|
<item name="android:padding">5dp</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="default_text">
|
|
|
|
<item name="android:background">@android:color/transparent</item>
|
|
|
|
<item name="android:textColor">@color/default_text_color</item>
|
|
|
|
</style>
|
|
|
|
|
2011-10-22 06:14:17 -04:00
|
|
|
</resources>
|