2011-06-23 17:09:13 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<resources>
|
|
|
|
|
|
|
|
<style name="editTextInputStyle">
|
|
|
|
<item name="android:layout_width">fill_parent</item>
|
|
|
|
<item name="android:layout_height">wrap_content</item>
|
|
|
|
<item name="android:typeface">monospace</item>
|
|
|
|
</style>
|
2011-09-10 14:20:58 -04:00
|
|
|
|
|
|
|
<style name="button_style">
|
|
|
|
<item name="android:layout_width">match_parent</item>
|
|
|
|
<item name="android:layout_height">match_parent</item>
|
|
|
|
<item name="android:layout_weight">1</item>
|
|
|
|
<item name="android:focusable">true</item>
|
|
|
|
<item name="android:background">@drawable/button</item>
|
|
|
|
<item name="android:layout_marginLeft">1dp</item>
|
|
|
|
</style>
|
|
|
|
|
2011-09-13 03:20:17 -04:00
|
|
|
<style name="digit_button_style" parent="button_style">
|
2011-09-10 14:20:58 -04:00
|
|
|
<item name="android:background">@drawable/blue_button</item>
|
|
|
|
</style>
|
|
|
|
|
2011-09-13 03:20:17 -04:00
|
|
|
<style name="control_button_style" parent="button_style"/>
|
2011-09-10 18:38:45 -04:00
|
|
|
|
2011-09-10 14:20:58 -04:00
|
|
|
<style name="button_small_style" parent="button_style">
|
|
|
|
<item name="android:textSize">30dp</item>
|
|
|
|
</style>
|
|
|
|
|
2011-10-08 08:43:13 -04:00
|
|
|
<style name="editor_style">
|
2011-09-17 16:08:04 -04:00
|
|
|
<item name="android:textSize">25dp</item>
|
2011-09-11 09:17:20 -04:00
|
|
|
<item name="android:background">#000000</item>
|
2011-10-02 06:12:13 -04:00
|
|
|
<item name="android:textColor">@color/text_color</item>
|
2011-09-10 18:38:45 -04:00
|
|
|
<item name="android:gravity">left|top</item>
|
2011-09-11 09:17:20 -04:00
|
|
|
<item name="android:padding">5dp</item>
|
2011-09-10 14:20:58 -04:00
|
|
|
<item name="android:layout_width">match_parent</item>
|
|
|
|
<item name="android:layout_height">match_parent</item>
|
|
|
|
</style>
|
|
|
|
|
2011-10-08 08:43:13 -04:00
|
|
|
<style name="display_style">
|
|
|
|
<item name="android:textSize">25dp</item>
|
|
|
|
<item name="android:background">#000000</item>
|
|
|
|
<item name="android:textColor">@color/text_color</item>
|
|
|
|
<item name="android:gravity">right|center_vertical</item>
|
|
|
|
<item name="android:padding">5dp</item>
|
|
|
|
<item name="android:layout_width">match_parent</item>
|
|
|
|
<item name="android:layout_height">match_parent</item>
|
|
|
|
</style>
|
|
|
|
|
2011-09-10 14:20:58 -04:00
|
|
|
</resources>
|