|
@@ -1,191 +1,198 @@
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
|
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_height="match_parent"
|
|
- android:orientation="vertical"
|
|
|
|
android:background="@color/black"
|
|
android:background="@color/black"
|
|
- android:layout_marginStart="5dp"
|
|
|
|
- android:layout_marginEnd="5dp"
|
|
|
|
>
|
|
>
|
|
|
|
|
|
- <TextView
|
|
|
|
- android:id="@+id/text"
|
|
|
|
|
|
+ <LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
- android:layout_height="32dp"
|
|
|
|
|
|
+ android:layout_height="match_parent"
|
|
android:layout_marginStart="5dp"
|
|
android:layout_marginStart="5dp"
|
|
android:layout_marginEnd="5dp"
|
|
android:layout_marginEnd="5dp"
|
|
- android:layout_marginTop="10dp"
|
|
|
|
- android:gravity="center"
|
|
|
|
- android:maxLines="1"
|
|
|
|
- android:ellipsize="middle"
|
|
|
|
- android:textFontWeight="500"
|
|
|
|
- android:textColor="@color/white"
|
|
|
|
- android:textSize="17sp"
|
|
|
|
- />
|
|
|
|
-
|
|
|
|
- <LinearLayout
|
|
|
|
- android:id="@+id/mLine1Layout"
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
- android:layout_marginTop="5dp"
|
|
|
|
- android:orientation="horizontal"
|
|
|
|
- android:layout_weight="1"
|
|
|
|
|
|
+ android:orientation="vertical"
|
|
>
|
|
>
|
|
- <Button
|
|
|
|
- android:id="@+id/button1"
|
|
|
|
- android:layout_width="50dp"
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
- android:background="@drawable/bg_gray"
|
|
|
|
- android:layout_weight="1"
|
|
|
|
- android:textSize="15sp"
|
|
|
|
- android:textColor="@color/white"
|
|
|
|
- android:text="1"
|
|
|
|
- android:tag="1" />
|
|
|
|
- <Button
|
|
|
|
- android:id="@+id/button2"
|
|
|
|
- android:layout_width="50dp"
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
- android:layout_marginStart="3dp"
|
|
|
|
- android:layout_marginEnd="3dp"
|
|
|
|
- android:background="@drawable/bg_gray"
|
|
|
|
- android:layout_weight="1"
|
|
|
|
- android:textSize="15sp"
|
|
|
|
- android:textColor="@color/white"
|
|
|
|
- android:text="2"
|
|
|
|
- android:tag="2" />
|
|
|
|
- <Button
|
|
|
|
- android:id="@+id/button3"
|
|
|
|
- android:layout_width="50dp"
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
- android:background="@drawable/bg_gray"
|
|
|
|
- android:layout_weight="1"
|
|
|
|
- android:textSize="15sp"
|
|
|
|
- android:textColor="@color/white"
|
|
|
|
- android:text="3"
|
|
|
|
- android:tag="3" />
|
|
|
|
- </LinearLayout>
|
|
|
|
|
|
|
|
- <LinearLayout
|
|
|
|
- android:id="@+id/mLine2Layout"
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
- android:layout_marginTop="3dp"
|
|
|
|
- android:orientation="horizontal"
|
|
|
|
- android:layout_weight="1"
|
|
|
|
- >
|
|
|
|
- <Button
|
|
|
|
- android:id="@+id/button4"
|
|
|
|
- android:layout_width="50dp"
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
- android:background="@drawable/bg_gray"
|
|
|
|
- android:layout_weight="1"
|
|
|
|
- android:textSize="15sp"
|
|
|
|
- android:textColor="@color/white"
|
|
|
|
- android:text="4"
|
|
|
|
- android:tag="4" />
|
|
|
|
- <Button
|
|
|
|
- android:id="@+id/button5"
|
|
|
|
- android:layout_width="50dp"
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
- android:layout_marginStart="3dp"
|
|
|
|
- android:layout_marginEnd="3dp"
|
|
|
|
- android:background="@drawable/bg_gray"
|
|
|
|
- android:layout_weight="1"
|
|
|
|
- android:textSize="15sp"
|
|
|
|
- android:textColor="@color/white"
|
|
|
|
- android:text="5"
|
|
|
|
- android:tag="5" />
|
|
|
|
- <Button
|
|
|
|
- android:id="@+id/button6"
|
|
|
|
- android:layout_width="50dp"
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
- android:background="@drawable/bg_gray"
|
|
|
|
- android:layout_weight="1"
|
|
|
|
- android:textSize="15sp"
|
|
|
|
|
|
+ <TextView
|
|
|
|
+ android:id="@+id/text"
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="32dp"
|
|
|
|
+ android:layout_marginStart="5dp"
|
|
|
|
+ android:layout_marginEnd="5dp"
|
|
|
|
+ android:layout_marginTop="10dp"
|
|
|
|
+ android:gravity="center"
|
|
|
|
+ android:maxLines="1"
|
|
|
|
+ android:ellipsize="middle"
|
|
|
|
+ android:textFontWeight="500"
|
|
android:textColor="@color/white"
|
|
android:textColor="@color/white"
|
|
- android:text="6"
|
|
|
|
- android:tag="6" />
|
|
|
|
- </LinearLayout>
|
|
|
|
|
|
+ android:textSize="17sp"
|
|
|
|
+ />
|
|
|
|
|
|
- <LinearLayout
|
|
|
|
- android:id="@+id/mLine3Layout"
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
- android:layout_marginTop="3dp"
|
|
|
|
- android:orientation="horizontal"
|
|
|
|
- android:layout_weight="1"
|
|
|
|
- >
|
|
|
|
- <Button
|
|
|
|
- android:id="@+id/button7"
|
|
|
|
- android:layout_width="50dp"
|
|
|
|
|
|
+ <LinearLayout
|
|
|
|
+ android:id="@+id/mLine1Layout"
|
|
|
|
+ android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
- android:background="@drawable/bg_gray"
|
|
|
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
|
+ android:orientation="horizontal"
|
|
android:layout_weight="1"
|
|
android:layout_weight="1"
|
|
- android:textSize="15sp"
|
|
|
|
- android:textColor="@color/white"
|
|
|
|
- android:text="7"
|
|
|
|
- android:tag="7" />
|
|
|
|
- <Button
|
|
|
|
- android:id="@+id/button8"
|
|
|
|
- android:layout_width="50dp"
|
|
|
|
|
|
+ >
|
|
|
|
+ <Button
|
|
|
|
+ android:id="@+id/button1"
|
|
|
|
+ android:layout_width="50dp"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:background="@drawable/bg_gray"
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
+ android:textSize="15sp"
|
|
|
|
+ android:textColor="@color/white"
|
|
|
|
+ android:text="1"
|
|
|
|
+ android:tag="1" />
|
|
|
|
+ <Button
|
|
|
|
+ android:id="@+id/button2"
|
|
|
|
+ android:layout_width="50dp"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_marginStart="3dp"
|
|
|
|
+ android:layout_marginEnd="3dp"
|
|
|
|
+ android:background="@drawable/bg_gray"
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
+ android:textSize="15sp"
|
|
|
|
+ android:textColor="@color/white"
|
|
|
|
+ android:text="2"
|
|
|
|
+ android:tag="2" />
|
|
|
|
+ <Button
|
|
|
|
+ android:id="@+id/button3"
|
|
|
|
+ android:layout_width="50dp"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:background="@drawable/bg_gray"
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
+ android:textSize="15sp"
|
|
|
|
+ android:textColor="@color/white"
|
|
|
|
+ android:text="3"
|
|
|
|
+ android:tag="3" />
|
|
|
|
+ </LinearLayout>
|
|
|
|
+
|
|
|
|
+ <LinearLayout
|
|
|
|
+ android:id="@+id/mLine2Layout"
|
|
|
|
+ android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
- android:layout_marginStart="3dp"
|
|
|
|
- android:layout_marginEnd="3dp"
|
|
|
|
- android:background="@drawable/bg_gray"
|
|
|
|
|
|
+ android:layout_marginTop="3dp"
|
|
|
|
+ android:orientation="horizontal"
|
|
android:layout_weight="1"
|
|
android:layout_weight="1"
|
|
- android:textSize="15sp"
|
|
|
|
- android:textColor="@color/white"
|
|
|
|
- android:text="8"
|
|
|
|
- android:tag="8" />
|
|
|
|
- <Button
|
|
|
|
- android:id="@+id/button9"
|
|
|
|
- android:layout_width="50dp"
|
|
|
|
|
|
+ >
|
|
|
|
+ <Button
|
|
|
|
+ android:id="@+id/button4"
|
|
|
|
+ android:layout_width="50dp"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:background="@drawable/bg_gray"
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
+ android:textSize="15sp"
|
|
|
|
+ android:textColor="@color/white"
|
|
|
|
+ android:text="4"
|
|
|
|
+ android:tag="4" />
|
|
|
|
+ <Button
|
|
|
|
+ android:id="@+id/button5"
|
|
|
|
+ android:layout_width="50dp"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_marginStart="3dp"
|
|
|
|
+ android:layout_marginEnd="3dp"
|
|
|
|
+ android:background="@drawable/bg_gray"
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
+ android:textSize="15sp"
|
|
|
|
+ android:textColor="@color/white"
|
|
|
|
+ android:text="5"
|
|
|
|
+ android:tag="5" />
|
|
|
|
+ <Button
|
|
|
|
+ android:id="@+id/button6"
|
|
|
|
+ android:layout_width="50dp"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:background="@drawable/bg_gray"
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
+ android:textSize="15sp"
|
|
|
|
+ android:textColor="@color/white"
|
|
|
|
+ android:text="6"
|
|
|
|
+ android:tag="6" />
|
|
|
|
+ </LinearLayout>
|
|
|
|
+
|
|
|
|
+ <LinearLayout
|
|
|
|
+ android:id="@+id/mLine3Layout"
|
|
|
|
+ android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
- android:background="@drawable/bg_gray"
|
|
|
|
|
|
+ android:layout_marginTop="3dp"
|
|
|
|
+ android:orientation="horizontal"
|
|
android:layout_weight="1"
|
|
android:layout_weight="1"
|
|
- android:textSize="15sp"
|
|
|
|
- android:textColor="@color/white"
|
|
|
|
- android:text="9"
|
|
|
|
- android:tag="9" />
|
|
|
|
- </LinearLayout>
|
|
|
|
|
|
+ >
|
|
|
|
+ <Button
|
|
|
|
+ android:id="@+id/button7"
|
|
|
|
+ android:layout_width="50dp"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:background="@drawable/bg_gray"
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
+ android:textSize="15sp"
|
|
|
|
+ android:textColor="@color/white"
|
|
|
|
+ android:text="7"
|
|
|
|
+ android:tag="7" />
|
|
|
|
+ <Button
|
|
|
|
+ android:id="@+id/button8"
|
|
|
|
+ android:layout_width="50dp"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_marginStart="3dp"
|
|
|
|
+ android:layout_marginEnd="3dp"
|
|
|
|
+ android:background="@drawable/bg_gray"
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
+ android:textSize="15sp"
|
|
|
|
+ android:textColor="@color/white"
|
|
|
|
+ android:text="8"
|
|
|
|
+ android:tag="8" />
|
|
|
|
+ <Button
|
|
|
|
+ android:id="@+id/button9"
|
|
|
|
+ android:layout_width="50dp"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:background="@drawable/bg_gray"
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
+ android:textSize="15sp"
|
|
|
|
+ android:textColor="@color/white"
|
|
|
|
+ android:text="9"
|
|
|
|
+ android:tag="9" />
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
|
- <LinearLayout
|
|
|
|
- android:id="@+id/mLine4Layout"
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
- android:layout_marginTop="3dp"
|
|
|
|
- android:orientation="horizontal"
|
|
|
|
- android:layout_weight="1"
|
|
|
|
- android:layout_marginBottom="10dp"
|
|
|
|
- >
|
|
|
|
- <ImageButton
|
|
|
|
- android:id="@+id/buttonOK"
|
|
|
|
- android:layout_width="50dp"
|
|
|
|
- android:layout_height="match_parent"
|
|
|
|
- android:background="@drawable/bg_gray"
|
|
|
|
- android:src="@drawable/ic_call_2"
|
|
|
|
- android:layout_weight="1"
|
|
|
|
- android:tag="101" />
|
|
|
|
- <Button
|
|
|
|
- android:id="@+id/button0"
|
|
|
|
- android:layout_width="50dp"
|
|
|
|
|
|
+ <LinearLayout
|
|
|
|
+ android:id="@+id/mLine4Layout"
|
|
|
|
+ android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
- android:layout_marginStart="3dp"
|
|
|
|
- android:layout_marginEnd="3dp"
|
|
|
|
- android:background="@drawable/bg_gray"
|
|
|
|
|
|
+ android:layout_marginTop="3dp"
|
|
|
|
+ android:orientation="horizontal"
|
|
android:layout_weight="1"
|
|
android:layout_weight="1"
|
|
- android:textSize="15sp"
|
|
|
|
- android:textColor="@color/white"
|
|
|
|
- android:text="0"
|
|
|
|
- android:tag="0" />
|
|
|
|
- <ImageButton
|
|
|
|
- android:id="@+id/buttonBack"
|
|
|
|
- android:layout_width="50dp"
|
|
|
|
- android:layout_height="match_parent"
|
|
|
|
- android:background="@drawable/bg_gray"
|
|
|
|
- android:src="@drawable/input_delete"
|
|
|
|
- android:layout_weight="1"
|
|
|
|
- android:tag="100" />
|
|
|
|
|
|
+ android:layout_marginBottom="10dp"
|
|
|
|
+ >
|
|
|
|
+ <ImageButton
|
|
|
|
+ android:id="@+id/buttonOK"
|
|
|
|
+ android:layout_width="50dp"
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
+ android:background="@drawable/bg_gray"
|
|
|
|
+ android:src="@drawable/ic_call_2"
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
+ android:tag="101" />
|
|
|
|
+ <Button
|
|
|
|
+ android:id="@+id/button0"
|
|
|
|
+ android:layout_width="50dp"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_marginStart="3dp"
|
|
|
|
+ android:layout_marginEnd="3dp"
|
|
|
|
+ android:background="@drawable/bg_gray"
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
+ android:textSize="15sp"
|
|
|
|
+ android:textColor="@color/white"
|
|
|
|
+ android:text="0"
|
|
|
|
+ android:tag="0" />
|
|
|
|
+ <ImageButton
|
|
|
|
+ android:id="@+id/buttonBack"
|
|
|
|
+ android:layout_width="50dp"
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
+ android:background="@drawable/bg_gray"
|
|
|
|
+ android:src="@drawable/input_delete"
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
+ android:tag="100" />
|
|
|
|
+ </LinearLayout>
|
|
|
|
+
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
|
|
-</LinearLayout>
|
|
|
|
|
|
+</RelativeLayout>
|