blob: fc45622f291515a021e3098fcb6107e06633258c [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"
Alexandre Lision30e35d12013-11-26 16:18:19 -050044 android:text="123"
45 android:textColor="@color/white"
46 android:textSize="15sp" />
Alexandre Lision21b4bed2013-11-07 10:53:02 -050047
48 <org.sflphone.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
Alexandre Lision30e35d12013-11-26 16:18:19 -050055 <Button
Alexandre Lision21b4bed2013-11-07 10:53:02 -050056 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"
Alexandre Lision30e35d12013-11-26 16:18:19 -050062 android:drawableLeft="@drawable/ic_action_keyboard_light"
Alexandre Lision30e35d12013-11-26 16:18:19 -050063 android:text="ABC"
64 android:textColor="@color/white"
65 android:textSize="15sp" />
Alexandre Lision21b4bed2013-11-07 10:53:02 -050066 </LinearLayout>
alision9f7a6ec2013-05-24 16:26:26 -040067
Alexandre Lision8b9d8e82013-10-04 09:21:27 -040068 <ImageButton
Alexandre Lision21b4bed2013-11-07 10:53:02 -050069 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"
74 android:src="@drawable/ic_action_call" />
75 </RelativeLayout>
alision9f7a6ec2013-05-24 16:26:26 -040076
77</RelativeLayout>