blob: 327dd9bee603371f0e53a91d81851e3b8a85778c [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
36 <ImageButton
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"
43 android:src="@drawable/ic_action_dial_pad_light" />
44
45 <org.sflphone.views.CircularImageView
46 android:id="@+id/fake_dar_band"
47 android:layout_width="0dp"
48 android:layout_height="match_parent"
49 android:layout_weight="40"
50 android:background="@drawable/item_keyboard_choice_selector" />
51
52 <ImageButton
53 android:id="@+id/alphabetic_keyboard"
54 android:layout_width="0dp"
55 android:layout_height="wrap_content"
56 android:layout_weight="30"
57 android:background="@drawable/item_keyboard_choice_selector"
58 android:contentDescription="@string/dial_alphabetic_pad"
59 android:src="@drawable/ic_action_keyboard_light" />
60 </LinearLayout>
alision9f7a6ec2013-05-24 16:26:26 -040061
Alexandre Lision8b9d8e82013-10-04 09:21:27 -040062 <ImageButton
Alexandre Lision21b4bed2013-11-07 10:53:02 -050063 android:id="@+id/buttonCall"
64 android:layout_width="100dp"
65 android:layout_height="100dp"
66 android:layout_centerHorizontal="true"
67 android:background="@drawable/call_button"
68 android:src="@drawable/ic_action_call" />
69 </RelativeLayout>
alision9f7a6ec2013-05-24 16:26:26 -040070
71</RelativeLayout>