add modulo, power, root, clear buttons

This commit is contained in:
tibbi 2015-12-24 13:38:41 +01:00
parent 4798537a3a
commit b41d375d10
1 changed files with 38 additions and 0 deletions

View File

@ -25,6 +25,44 @@
android:layout_height="match_parent"
android:layout_below="@+id/display">
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1">
<Button
android:id="@+id/btn_modulo"
style="@style/MyButtonStyle"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="%"/>
<Button
android:id="@+id/btn_power"
style="@style/MyButtonStyle"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="^"/>
<Button
android:id="@+id/btn_root"
style="@style/MyButtonStyle"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="√"/>
<Button
android:id="@+id/btn_clear"
style="@style/MyButtonStyle"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="C"/>
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent"