blob: 488398d8dbdb2d19b2e277eb0203bc5fa77b454d [file] [log] [blame]
alisionb1763882013-06-18 17:30:51 -04001<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="match_parent"
4 android:layout_height="50dp"
5 android:weightSum="4" >
6
7 <Button
8 android:id="@+id/action_hold"
9 android:layout_width="0dp"
10 android:layout_height="match_parent"
11 android:layout_weight="1"
12 android:tag="hold"
alisiondf1dac92013-06-27 17:35:53 -040013 android:textSize="12sp"
alisionb1763882013-06-18 17:30:51 -040014 android:text="Hold" />
15
16 <Button
17 android:id="@+id/action_conf"
18 android:layout_width="0dp"
19 android:layout_height="match_parent"
20 android:layout_weight="1"
alisiondf1dac92013-06-27 17:35:53 -040021 android:textSize="12sp"
alisionb1763882013-06-18 17:30:51 -040022 android:text="Conference" />
23
24 <Button
25 android:id="@+id/action_transfer"
26 android:layout_width="0dp"
27 android:layout_height="match_parent"
28 android:layout_weight="1"
alisiondf1dac92013-06-27 17:35:53 -040029 android:textSize="12sp"
alisionb1763882013-06-18 17:30:51 -040030 android:text="Transfer" />
31
32 <ImageButton
33 android:id="@+id/action_hangup"
34 android:layout_width="0dp"
35 android:layout_height="match_parent"
36 android:layout_weight="1"
alisiondf1dac92013-06-27 17:35:53 -040037 android:textSize="12sp"
alisionb1763882013-06-18 17:30:51 -040038 android:src="@drawable/ic_hangup" />
39
40</LinearLayout>