blob: f0c6b9592114e554fc39a5acba1ee55def824ea5 [file] [log] [blame]
Adrien Béraud04d822c2015-04-02 17:44:36 -04001<?xml version="1.0" encoding="utf-8"?>
2<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="match_parent"
4 android:layout_height="wrap_content" >
5
6 <cx.ring.views.ClearableEditText
7 android:id="@+id/textField"
8 android:layout_width="match_parent"
9 android:layout_height="wrap_content"
10 android:layout_alignParentTop="true"
11 android:layout_marginLeft="10dp"
12 android:layout_marginRight="10dp"
13 android:layout_marginTop="10dp" />
14
15 <RelativeLayout
16 android:layout_width="match_parent"
17 android:layout_height="wrap_content"
18 android:layout_alignLeft="@+id/textField"
19 android:layout_alignRight="@+id/textField"
20 android:layout_below="@+id/textField" >
21
22 <ImageView
23 android:id="@+id/fake_padding"
24 android:layout_width="match_parent"
25 android:layout_height="30dp"
26 android:background="@color/sfl_light_blue" />
27
28 <LinearLayout
29 android:id="@+id/keyboard_choice"
30 android:layout_width="match_parent"
31 android:layout_height="wrap_content"
32 android:layout_below="@+id/fake_padding"
33 android:layout_marginBottom="15dp"
34 android:weightSum="100" >
35
36 <Button
37 android:id="@+id/numeric_keyboard"
38 android:layout_width="0dp"
39 android:layout_height="wrap_content"
40 android:layout_weight="30"
41 android:background="@drawable/item_keyboard_choice_selector"
42 android:contentDescription="@string/dial_numeric_pad"
Adrien Béraud74b579d2015-11-10 11:35:59 -050043 android:drawableLeft="@drawable/ic_dialpad_white_24dp"
Adrien Béraud04d822c2015-04-02 17:44:36 -040044 android:text="123"
45 android:textColor="@color/white"
46 android:textSize="15sp" />
47
48 <cx.ring.views.CircularImageView
49 android:id="@+id/fake_dar_band"
50 android:layout_width="0dp"
51 android:layout_height="match_parent"
52 android:layout_weight="40"
53 android:background="@drawable/item_keyboard_choice_selector" />
54
55 <Button
56 android:id="@+id/alphabetic_keyboard"
57 android:layout_width="0dp"
58 android:layout_height="wrap_content"
59 android:layout_weight="30"
60 android:background="@drawable/item_keyboard_choice_selector"
61 android:contentDescription="@string/dial_alphabetic_pad"
62 android:drawableLeft="@drawable/ic_action_keyboard_light"
63 android:text="ABC"
64 android:textColor="@color/white"
65 android:textSize="15sp" />
66 </LinearLayout>
67
68 <ImageButton
69 android:id="@+id/buttonCall"
70 android:layout_width="100dp"
71 android:layout_height="100dp"
72 android:layout_centerHorizontal="true"
73 android:background="@drawable/call_button"
Adrien Béraud74b579d2015-11-10 11:35:59 -050074 android:src="@drawable/ic_call_white_24dp" />
Adrien Béraud04d822c2015-04-02 17:44:36 -040075 </RelativeLayout>
76
77</RelativeLayout>