blob: 69311b99944d9fc0b407fa46837a18c950d06cc7 [file] [log] [blame]
alisiond295ec22013-05-17 10:12:13 -04001<?xml version="1.0" encoding="utf-8"?>
alision9f7a6ec2013-05-24 16:26:26 -04002<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
Alexandre Lision21b4bed2013-11-07 10:53:02 -05003 android:layout_width="match_parent"
Alexandre Lision0e44e912013-11-20 09:24:50 -05004 android:layout_height="wrap_content" >
alisiond295ec22013-05-17 10:12:13 -04005
Alexandre Lision064e1e02013-10-01 16:18:42 -04006 <org.sflphone.views.ClearableEditText
alision9f7a6ec2013-05-24 16:26:26 -04007 android:id="@+id/textField"
8 android:layout_width="match_parent"
alisiond295ec22013-05-17 10:12:13 -04009 android:layout_height="wrap_content"
Alexandre Lision0e44e912013-11-20 09:24:50 -050010 android:layout_alignParentTop="true"
11 android:layout_marginLeft="10dp"
12 android:layout_marginRight="10dp"
13 android:layout_marginTop="10dp" />
alisiond295ec22013-05-17 10:12:13 -040014
Alexandre Lision21b4bed2013-11-07 10:53:02 -050015 <RelativeLayout
16 android:layout_width="match_parent"
alision9f7a6ec2013-05-24 16:26:26 -040017 android:layout_height="wrap_content"
18 android:layout_alignLeft="@+id/textField"
19 android:layout_alignRight="@+id/textField"
Alexandre Lision21b4bed2013-11-07 10:53:02 -050020 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
Alexandre Lision30e35d12013-11-26 16:18:19 -050036 <Button
Alexandre Lision21b4bed2013-11-07 10:53:02 -050037 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"
Alexandre Lision30e35d12013-11-26 16:18:19 -050043 android:drawableLeft="@drawable/ic_action_dial_pad_light"
44 android:drawablePadding="5sp"
45 android:text="123"
46 android:textColor="@color/white"
47 android:textSize="15sp" />
Alexandre Lision21b4bed2013-11-07 10:53:02 -050048
49 <org.sflphone.views.CircularImageView
50 android:id="@+id/fake_dar_band"
51 android:layout_width="0dp"
52 android:layout_height="match_parent"
53 android:layout_weight="40"
54 android:background="@drawable/item_keyboard_choice_selector" />
55
Alexandre Lision30e35d12013-11-26 16:18:19 -050056 <Button
Alexandre Lision21b4bed2013-11-07 10:53:02 -050057 android:id="@+id/alphabetic_keyboard"
58 android:layout_width="0dp"
59 android:layout_height="wrap_content"
60 android:layout_weight="30"
61 android:background="@drawable/item_keyboard_choice_selector"
62 android:contentDescription="@string/dial_alphabetic_pad"
Alexandre Lision30e35d12013-11-26 16:18:19 -050063 android:drawableLeft="@drawable/ic_action_keyboard_light"
64 android:drawablePadding="10sp"
65 android:text="ABC"
66 android:textColor="@color/white"
67 android:textSize="15sp" />
Alexandre Lision21b4bed2013-11-07 10:53:02 -050068 </LinearLayout>
alision9f7a6ec2013-05-24 16:26:26 -040069
Alexandre Lision8b9d8e82013-10-04 09:21:27 -040070 <ImageButton
Alexandre Lision21b4bed2013-11-07 10:53:02 -050071 android:id="@+id/buttonCall"
72 android:layout_width="100dp"
73 android:layout_height="100dp"
74 android:layout_centerHorizontal="true"
75 android:background="@drawable/call_button"
76 android:src="@drawable/ic_action_call" />
77 </RelativeLayout>
alision9f7a6ec2013-05-24 16:26:26 -040078
79</RelativeLayout>