JLChen
2021-01-04 ed86fe7ed952bb2151aac8841134246bbde152c9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?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>