This commit is contained in:
Sergey Solovyev 2012-12-01 18:54:21 +04:00
parent 2747b26506
commit 19818c510e
37 changed files with 131 additions and 131 deletions

View File

@ -9,5 +9,5 @@
<ImageButton xmlns:a="http://schemas.android.com/apk/res/android" <ImageButton xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/appButton" a:id="@+id/appButton"
a:src="@drawable/kb_logo" a:src="@drawable/kb_logo"
style="@style/widget_metro_control_image_button_style" style="@style/cpp_simple_metro_control_image_button_style"
a:contentDescription="App"/> a:contentDescription="App"/>

View File

@ -10,4 +10,4 @@
a:id="@+id/clearButton" a:id="@+id/clearButton"
a:text="@string/c_clear" a:text="@string/c_clear"
a:textStyle="bold" a:textStyle="bold"
style="@style/widget_metro_control_button_style"/> style="@style/cpp_simple_metro_control_button_style"/>

View File

@ -9,5 +9,5 @@
<ImageButton xmlns:a="http://schemas.android.com/apk/res/android" <ImageButton xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/copyButton" a:id="@+id/copyButton"
a:src="@drawable/kb_copy" a:src="@drawable/kb_copy"
style="@style/widget_metro_control_image_button_style" style="@style/cpp_simple_metro_control_image_button_style"
a:contentDescription="Copy"/> a:contentDescription="Copy"/>

View File

@ -9,4 +9,4 @@
<Button xmlns:a="http://schemas.android.com/apk/res/android" <Button xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/divisionButton" a:id="@+id/divisionButton"
a:text="/" a:text="/"
style="@style/widget_metro_blue_operation_button_style"/> style="@style/cpp_simple_metro_blue_operation_button_style"/>

View File

@ -9,4 +9,4 @@
<Button xmlns:a="http://schemas.android.com/apk/res/android" <Button xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/eightDigitButton" a:id="@+id/eightDigitButton"
a:text="8" a:text="8"
style="@style/widget_metro_digit_button_style"/> style="@style/cpp_simple_metro_digit_button_style"/>

View File

@ -9,4 +9,4 @@
xmlns:a="http://schemas.android.com/apk/res/android" xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/equalsButton" a:id="@+id/equalsButton"
a:text="=" a:text="="
style="@style/widget_metro_control_button_style"/> style="@style/cpp_simple_metro_control_button_style"/>

View File

@ -9,5 +9,5 @@
<ImageButton xmlns:a="http://schemas.android.com/apk/res/android" <ImageButton xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/eraseButton" a:id="@+id/eraseButton"
a:src="@drawable/kb_delete" a:src="@drawable/kb_delete"
style="@style/widget_metro_control_image_button_style" style="@style/cpp_simple_metro_control_image_button_style"
a:contentDescription="Erase"/> a:contentDescription="Erase"/>

View File

@ -8,4 +8,4 @@
<Button xmlns:a="http://schemas.android.com/apk/res/android" <Button xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/fiveDigitButton" a:id="@+id/fiveDigitButton"
a:text="5" a:text="5"
style="@style/widget_metro_digit_button_style"/> style="@style/cpp_simple_metro_digit_button_style"/>

View File

@ -8,4 +8,4 @@
<Button xmlns:a="http://schemas.android.com/apk/res/android" <Button xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/fourDigitButton" a:id="@+id/fourDigitButton"
a:text="4" a:text="4"
style="@style/widget_metro_digit_button_style"/> style="@style/cpp_simple_metro_digit_button_style"/>

View File

@ -10,4 +10,4 @@
a:id="@+id/functions_button" a:id="@+id/functions_button"
a:text="ƒ(x)" a:text="ƒ(x)"
a:textStyle="italic" a:textStyle="italic"
style="@style/widget_metro_control_button_style"/> style="@style/cpp_simple_metro_control_button_style"/>

View File

@ -8,5 +8,5 @@
<Button xmlns:a="http://schemas.android.com/apk/res/android" <Button xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/historyButton" a:id="@+id/historyButton"
a:text="@string/c_history_button" a:text="@string/c_history_button"
style="@style/widget_metro_control_button_style" style="@style/cpp_simple_metro_control_button_style"
a:textStyle="bold"/> a:textStyle="bold"/>

View File

@ -0,0 +1,74 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
a:layout_width="match_parent"
a:layout_height="match_parent"
a:orientation="vertical">
<LinearLayout a:layout_weight="1"
a:layout_width="match_parent"
a:layout_height="0dp">
<include layout="@layout/cpp_simple_seven_digit_button"/>
<include layout="@layout/cpp_simple_eight_digit_button"/>
<include layout="@layout/cpp_simple_nine_digit_button"/>
<include layout="@layout/cpp_simple_multiplication_button"/>
<include layout="@layout/cpp_simple_percent_button"/>
<include layout="@layout/cpp_simple_clear_button"/>
</LinearLayout>
<LinearLayout a:layout_weight="1"
a:layout_width="match_parent"
a:layout_height="0dp">
<include layout="@layout/cpp_simple_four_digit_button"/>
<include layout="@layout/cpp_simple_five_digit_button"/>
<include layout="@layout/cpp_simple_six_digit_button"/>
<include layout="@layout/cpp_simple_division_button"/>
<include layout="@layout/cpp_simple_power_button"/>
<include layout="@layout/cpp_simple_erase_button"/>
</LinearLayout>
<LinearLayout a:layout_weight="1"
a:layout_width="match_parent"
a:layout_height="0dp">
<include layout="@layout/cpp_simple_one_digit_button"/>
<include layout="@layout/cpp_simple_two_digit_button"/>
<include layout="@layout/cpp_simple_three_digit_button"/>
<include layout="@layout/cpp_simple_plus_button"/>
<include layout="@layout/cpp_simple_like_button"/>
<include layout="@layout/cpp_simple_copy_button"/>
</LinearLayout>
<LinearLayout a:layout_weight="1"
a:layout_width="match_parent"
a:layout_height="0dp">
<include layout="@layout/cpp_simple_round_brackets_button"/>
<include layout="@layout/cpp_simple_zero_digit_button"/>
<include layout="@layout/cpp_simple_dot_button"/>
<include layout="@layout/cpp_simple_subtraction_button"/>
<include layout="@layout/cpp_simple_settings_button"/>
<include layout="@layout/cpp_simple_paste_button"/>
</LinearLayout>
<LinearLayout a:layout_weight="1"
a:layout_width="match_parent"
a:layout_height="0dp">
<include layout="@layout/cpp_simple_left_button"/>
<include layout="@layout/cpp_simple_right_button"/>
<include layout="@layout/cpp_simple_vars_button"/>
<include layout="@layout/cpp_simple_functions_button"/>
<include layout="@layout/cpp_simple_app_button"/>
<include layout="@layout/cpp_simple_history_button"/>
</LinearLayout>
</LinearLayout>

View File

@ -9,4 +9,4 @@
<Button xmlns:a="http://schemas.android.com/apk/res/android" <Button xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/leftButton" a:id="@+id/leftButton"
a:text="◀" a:text="◀"
style="@style/widget_metro_control_button_style"/> style="@style/cpp_simple_metro_control_button_style"/>

View File

@ -9,5 +9,5 @@
<ImageButton xmlns:a="http://schemas.android.com/apk/res/android" <ImageButton xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/likeButton" a:id="@+id/likeButton"
a:src="@drawable/kb_facebook" a:src="@drawable/kb_facebook"
style="@style/widget_metro_control_image_button_style" style="@style/cpp_simple_metro_control_image_button_style"
a:contentDescription="Like"/> a:contentDescription="Like"/>

View File

@ -9,4 +9,4 @@
<Button xmlns:a="http://schemas.android.com/apk/res/android" <Button xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/multiplicationButton" a:id="@+id/multiplicationButton"
a:text="×" a:text="×"
style="@style/widget_metro_blue_operation_button_style"/> style="@style/cpp_simple_metro_blue_operation_button_style"/>

View File

@ -9,4 +9,4 @@
<Button xmlns:a="http://schemas.android.com/apk/res/android" <Button xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/nineDigitButton" a:id="@+id/nineDigitButton"
a:text="9" a:text="9"
style="@style/widget_metro_digit_button_style"/> style="@style/cpp_simple_metro_digit_button_style"/>

View File

@ -9,4 +9,4 @@
<Button xmlns:a="http://schemas.android.com/apk/res/android" <Button xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/oneDigitButton" a:id="@+id/oneDigitButton"
a:text="1" a:text="1"
style="@style/widget_metro_digit_button_style"/> style="@style/cpp_simple_metro_digit_button_style"/>

View File

@ -9,5 +9,5 @@
<ImageButton xmlns:a="http://schemas.android.com/apk/res/android" <ImageButton xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/pasteButton" a:id="@+id/pasteButton"
a:src="@drawable/kb_paste" a:src="@drawable/kb_paste"
style="@style/widget_metro_control_image_button_style" style="@style/cpp_simple_metro_control_image_button_style"
a:contentDescription="Paste"/> a:contentDescription="Paste"/>

View File

@ -9,4 +9,4 @@
<Button xmlns:a="http://schemas.android.com/apk/res/android" <Button xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/percentButton" a:id="@+id/percentButton"
a:text="%" a:text="%"
style="@style/widget_metro_blue_operation_button_style"/> style="@style/cpp_simple_metro_blue_operation_button_style"/>

View File

@ -8,4 +8,4 @@
<Button xmlns:a="http://schemas.android.com/apk/res/android" <Button xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/plusButton" a:id="@+id/plusButton"
a:text="+" a:text="+"
style="@style/widget_metro_blue_operation_button_style"/> style="@style/cpp_simple_metro_blue_operation_button_style"/>

View File

@ -9,4 +9,4 @@
<Button xmlns:a="http://schemas.android.com/apk/res/android" <Button xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/powerButton" a:id="@+id/powerButton"
a:text="^" a:text="^"
style="@style/widget_metro_blue_operation_button_style"/> style="@style/cpp_simple_metro_blue_operation_button_style"/>

View File

@ -9,4 +9,4 @@
<Button xmlns:a="http://schemas.android.com/apk/res/android" <Button xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/rightButton" a:id="@+id/rightButton"
a:text="▶" a:text="▶"
style="@style/widget_metro_control_button_style"/> style="@style/cpp_simple_metro_control_button_style"/>

View File

@ -9,4 +9,4 @@
<Button xmlns:a="http://schemas.android.com/apk/res/android" <Button xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/roundBracketsButton" a:id="@+id/roundBracketsButton"
a:text="()" a:text="()"
style="@style/widget_metro_digit_button_style"/> style="@style/cpp_simple_metro_digit_button_style"/>

View File

@ -9,5 +9,5 @@
<ImageButton xmlns:a="http://schemas.android.com/apk/res/android" <ImageButton xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/settingsButton" a:id="@+id/settingsButton"
a:src="@drawable/kb_settings" a:src="@drawable/kb_settings"
style="@style/widget_metro_control_image_button_style" style="@style/cpp_simple_metro_control_image_button_style"
a:contentDescription="Settings"/> a:contentDescription="Settings"/>

View File

@ -3,4 +3,4 @@
<Button xmlns:a="http://schemas.android.com/apk/res/android" <Button xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/sevenDigitButton" a:id="@+id/sevenDigitButton"
a:text="7" a:text="7"
style="@style/widget_metro_digit_button_style"/> style="@style/cpp_simple_metro_digit_button_style"/>

View File

@ -9,4 +9,4 @@
<Button xmlns:a="http://schemas.android.com/apk/res/android" <Button xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/sixDigitButton" a:id="@+id/sixDigitButton"
a:text="6" a:text="6"
style="@style/widget_metro_digit_button_style"/> style="@style/cpp_simple_metro_digit_button_style"/>

View File

@ -8,4 +8,4 @@
<Button xmlns:a="http://schemas.android.com/apk/res/android" <Button xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/subtractionButton" a:id="@+id/subtractionButton"
a:text="-" a:text="-"
style="@style/widget_metro_blue_operation_button_style"/> style="@style/cpp_simple_metro_blue_operation_button_style"/>

View File

@ -9,4 +9,4 @@
<Button xmlns:a="http://schemas.android.com/apk/res/android" <Button xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/threeDigitButton" a:id="@+id/threeDigitButton"
a:text="3" a:text="3"
style="@style/widget_metro_digit_button_style"/> style="@style/cpp_simple_metro_digit_button_style"/>

View File

@ -9,4 +9,4 @@
<Button xmlns:a="http://schemas.android.com/apk/res/android" <Button xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/twoDigitButton" a:id="@+id/twoDigitButton"
a:text="2" a:text="2"
style="@style/widget_metro_digit_button_style"/> style="@style/cpp_simple_metro_digit_button_style"/>

View File

@ -10,4 +10,4 @@
a:id="@+id/vars_button" a:id="@+id/vars_button"
a:text="π,…" a:text="π,…"
a:textStyle="italic" a:textStyle="italic"
style="@style/widget_metro_control_button_style"/> style="@style/cpp_simple_metro_control_button_style"/>

View File

@ -9,4 +9,4 @@
<Button xmlns:a="http://schemas.android.com/apk/res/android" <Button xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/zeroDigitButton" a:id="@+id/zeroDigitButton"
a:text="0" a:text="0"
style="@style/widget_metro_digit_button_style"/> style="@style/cpp_simple_metro_digit_button_style"/>

View File

@ -1,74 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
a:layout_width="match_parent"
a:layout_height="match_parent"
a:orientation="vertical">
<LinearLayout a:layout_weight="1"
a:layout_width="match_parent"
a:layout_height="0dp">
<include layout="@layout/widget_seven_digit_button"/>
<include layout="@layout/widget_eight_digit_button"/>
<include layout="@layout/widget_nine_digit_button"/>
<include layout="@layout/widget_multiplication_button"/>
<include layout="@layout/widget_percent_button"/>
<include layout="@layout/widget_clear_button"/>
</LinearLayout>
<LinearLayout a:layout_weight="1"
a:layout_width="match_parent"
a:layout_height="0dp">
<include layout="@layout/widget_four_digit_button"/>
<include layout="@layout/widget_five_digit_button"/>
<include layout="@layout/widget_six_digit_button"/>
<include layout="@layout/widget_division_button"/>
<include layout="@layout/widget_power_button"/>
<include layout="@layout/widget_erase_button"/>
</LinearLayout>
<LinearLayout a:layout_weight="1"
a:layout_width="match_parent"
a:layout_height="0dp">
<include layout="@layout/widget_one_digit_button"/>
<include layout="@layout/widget_two_digit_button"/>
<include layout="@layout/widget_three_digit_button"/>
<include layout="@layout/widget_plus_button"/>
<include layout="@layout/widget_like_button"/>
<include layout="@layout/widget_copy_button"/>
</LinearLayout>
<LinearLayout a:layout_weight="1"
a:layout_width="match_parent"
a:layout_height="0dp">
<include layout="@layout/widget_round_brackets_button"/>
<include layout="@layout/widget_zero_digit_button"/>
<include layout="@layout/widget_dot_button"/>
<include layout="@layout/widget_subtraction_button"/>
<include layout="@layout/widget_settings_button"/>
<include layout="@layout/widget_paste_button"/>
</LinearLayout>
<LinearLayout a:layout_weight="1"
a:layout_width="match_parent"
a:layout_height="0dp">
<include layout="@layout/widget_left_button"/>
<include layout="@layout/widget_right_button"/>
<include layout="@layout/widget_vars_button"/>
<include layout="@layout/widget_functions_button"/>
<include layout="@layout/widget_app_button"/>
<include layout="@layout/widget_history_button"/>
</LinearLayout>
</LinearLayout>

View File

@ -89,19 +89,19 @@
<style name="widget_metro_digit_button_style" parent="metro_digit_button_style"> <style name="cpp_simple_metro_digit_button_style" parent="metro_digit_button_style">
<item name="android:textSize">@dimen/cpp_widget_keyboard_button_text_size</item> <item name="android:textSize">@dimen/cpp_widget_keyboard_button_text_size</item>
</style> </style>
<style name="widget_metro_control_button_style" parent="metro_control_button_style"> <style name="cpp_simple_metro_control_button_style" parent="metro_control_button_style">
<item name="android:textSize">@dimen/cpp_widget_keyboard_button_text_size</item> <item name="android:textSize">@dimen/cpp_widget_keyboard_button_text_size</item>
</style> </style>
<style name="widget_metro_blue_operation_button_style" parent="metro_blue_operation_button_style"> <style name="cpp_simple_metro_blue_operation_button_style" parent="metro_blue_operation_button_style">
<item name="android:textSize">@dimen/cpp_widget_keyboard_button_text_size</item> <item name="android:textSize">@dimen/cpp_widget_keyboard_button_text_size</item>
</style> </style>
<style name="widget_metro_control_image_button_style" parent="metro_control_image_button_style"> <style name="cpp_simple_metro_control_image_button_style" parent="metro_control_image_button_style">
<item name="android:scaleType">center</item> <item name="android:scaleType">center</item>
</style> </style>

View File

@ -9,11 +9,11 @@
a:layout_width="match_parent" a:layout_width="match_parent"
a:layout_height="0dp"> a:layout_height="0dp">
<include layout="@layout/widget_seven_digit_button"/> <include layout="@layout/cpp_simple_seven_digit_button"/>
<include layout="@layout/widget_eight_digit_button"/> <include layout="@layout/cpp_simple_eight_digit_button"/>
<include layout="@layout/widget_nine_digit_button"/> <include layout="@layout/cpp_simple_nine_digit_button"/>
<include layout="@layout/widget_multiplication_button"/> <include layout="@layout/cpp_simple_multiplication_button"/>
<include layout="@layout/widget_erase_button"/> <include layout="@layout/cpp_simple_erase_button"/>
</LinearLayout> </LinearLayout>
@ -21,11 +21,11 @@
a:layout_width="match_parent" a:layout_width="match_parent"
a:layout_height="0dp"> a:layout_height="0dp">
<include layout="@layout/widget_four_digit_button"/> <include layout="@layout/cpp_simple_four_digit_button"/>
<include layout="@layout/widget_five_digit_button"/> <include layout="@layout/cpp_simple_five_digit_button"/>
<include layout="@layout/widget_six_digit_button"/> <include layout="@layout/cpp_simple_six_digit_button"/>
<include layout="@layout/widget_division_button"/> <include layout="@layout/cpp_simple_division_button"/>
<include layout="@layout/widget_percent_button"/> <include layout="@layout/cpp_simple_percent_button"/>
</LinearLayout> </LinearLayout>
@ -33,22 +33,22 @@
a:layout_width="match_parent" a:layout_width="match_parent"
a:layout_height="0dp"> a:layout_height="0dp">
<include layout="@layout/widget_one_digit_button"/> <include layout="@layout/cpp_simple_one_digit_button"/>
<include layout="@layout/widget_two_digit_button"/> <include layout="@layout/cpp_simple_two_digit_button"/>
<include layout="@layout/widget_three_digit_button"/> <include layout="@layout/cpp_simple_three_digit_button"/>
<include layout="@layout/widget_plus_button"/> <include layout="@layout/cpp_simple_plus_button"/>
<include layout="@layout/widget_power_button"/> <include layout="@layout/cpp_simple_power_button"/>
</LinearLayout> </LinearLayout>
<LinearLayout a:layout_weight="1" <LinearLayout a:layout_weight="1"
a:layout_width="match_parent" a:layout_width="match_parent"
a:layout_height="0dp"> a:layout_height="0dp">
<include layout="@layout/widget_round_brackets_button"/> <include layout="@layout/cpp_simple_round_brackets_button"/>
<include layout="@layout/widget_zero_digit_button"/> <include layout="@layout/cpp_simple_zero_digit_button"/>
<include layout="@layout/widget_dot_button"/> <include layout="@layout/cpp_simple_dot_button"/>
<include layout="@layout/widget_subtraction_button"/> <include layout="@layout/cpp_simple_subtraction_button"/>
<include layout="@layout/widget_app_button"/> <include layout="@layout/cpp_simple_app_button"/>
</LinearLayout> </LinearLayout>

View File

@ -19,7 +19,7 @@
a:layout_width="match_parent" a:layout_width="match_parent"
a:layout_height="0dp"> a:layout_height="0dp">
<include layout="@layout/widget_equals_button" <include layout="@layout/cpp_simple_equals_button"
a:layout_margin="@dimen/cpp_button_margin" a:layout_margin="@dimen/cpp_button_margin"
a:layout_weight="1" a:layout_weight="1"
a:layout_width="0dp" a:layout_width="0dp"

View File

@ -15,7 +15,7 @@
a:layout_width="match_parent" a:layout_width="match_parent"
a:layout_height="0dp"> a:layout_height="0dp">
<include layout="@layout/widget_equals_button" <include layout="@layout/cpp_simple_equals_button"
a:layout_margin="@dimen/cpp_button_margin" a:layout_margin="@dimen/cpp_button_margin"
a:layout_weight="1" a:layout_weight="1"
a:layout_width="0dp" a:layout_width="0dp"
@ -28,7 +28,7 @@
</LinearLayout> </LinearLayout>
<include layout="@layout/widget_keyboard" <include layout="@layout/cpp_simple_keyboard"
a:layout_weight="5" a:layout_weight="5"
a:layout_width="match_parent" a:layout_width="match_parent"
a:layout_height="0dp"/> a:layout_height="0dp"/>