<?xml version="1.0" encoding="utf-8"?>
|
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="?attr/backgroundColor">
|
|
<TableRow
|
android:layout_weight="1"
|
android:gravity="center">
|
|
<org.linphone.dialer.views.Digit
|
android:id="@+id/Digit1"
|
style="@style/DialerDigit"
|
android:background="@drawable/numpad_one"
|
android:soundEffectsEnabled="true"
|
android:text="1" />
|
|
<org.linphone.dialer.views.Digit
|
android:id="@+id/Digit2"
|
style="@style/DialerDigit"
|
android:background="@drawable/numpad_two"
|
android:soundEffectsEnabled="true"
|
android:text="2" />
|
|
<org.linphone.dialer.views.Digit
|
android:id="@+id/Digit3"
|
style="@style/DialerDigit"
|
android:background="@drawable/numpad_three"
|
android:soundEffectsEnabled="true"
|
android:text="3" />
|
|
</TableRow>
|
|
<TableRow
|
android:layout_weight="1"
|
android:gravity="center">
|
|
<org.linphone.dialer.views.Digit
|
android:id="@+id/Digit4"
|
style="@style/DialerDigit"
|
android:background="@drawable/numpad_four"
|
android:soundEffectsEnabled="true"
|
android:text="4" />
|
|
<org.linphone.dialer.views.Digit
|
android:id="@+id/Digit5"
|
style="@style/DialerDigit"
|
android:background="@drawable/numpad_five"
|
android:soundEffectsEnabled="true"
|
android:text="5" />
|
|
<org.linphone.dialer.views.Digit
|
android:id="@+id/Digit6"
|
style="@style/DialerDigit"
|
android:background="@drawable/numpad_six"
|
android:soundEffectsEnabled="true"
|
android:text="6" />
|
|
</TableRow>
|
|
<TableRow
|
android:layout_weight="1"
|
android:gravity="center">
|
|
<org.linphone.dialer.views.Digit
|
android:id="@+id/Digit7"
|
style="@style/DialerDigit"
|
android:background="@drawable/numpad_seven"
|
android:soundEffectsEnabled="true"
|
android:text="7" />
|
|
<org.linphone.dialer.views.Digit
|
android:id="@+id/Digit8"
|
style="@style/DialerDigit"
|
android:background="@drawable/numpad_eight"
|
android:soundEffectsEnabled="true"
|
android:text="8" />
|
|
<org.linphone.dialer.views.Digit
|
android:id="@+id/Digit9"
|
style="@style/DialerDigit"
|
android:background="@drawable/numpad_nine"
|
android:soundEffectsEnabled="true"
|
android:text="9" />
|
|
</TableRow>
|
|
<TableRow
|
android:layout_weight="1"
|
android:gravity="center">
|
|
<org.linphone.dialer.views.Digit
|
android:id="@+id/DigitStar"
|
style="@style/DialerDigit"
|
android:background="@drawable/numpad_star_digit"
|
android:soundEffectsEnabled="true"
|
android:text="*" />
|
|
<org.linphone.dialer.views.Digit
|
android:id="@+id/Digit00"
|
style="@style/DialerDigit"
|
android:background="@drawable/numpad_zero"
|
android:soundEffectsEnabled="true"
|
android:text="0+" />
|
|
<org.linphone.dialer.views.Digit
|
android:id="@+id/DigitHash"
|
style="@style/DialerDigit"
|
android:background="@drawable/numpad_sharp"
|
android:soundEffectsEnabled="true"
|
android:text="#" />
|
|
</TableRow>
|
|
</TableLayout>
|