add modulo, power, root, clear buttons
This commit is contained in:
parent
4798537a3a
commit
b41d375d10
|
@ -25,6 +25,44 @@
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:layout_below="@+id/display">
|
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
|
<TableRow
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
|
|
Loading…
Reference in New Issue