blob: b6a3bb582ec04b444cbd577f4b76d5fbe1a62e66 [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"
13 android:text="Hold" />
14
15 <Button
16 android:id="@+id/action_conf"
17 android:layout_width="0dp"
18 android:layout_height="match_parent"
19 android:layout_weight="1"
20 android:text="Conference" />
21
22 <Button
23 android:id="@+id/action_transfer"
24 android:layout_width="0dp"
25 android:layout_height="match_parent"
26 android:layout_weight="1"
27 android:text="Transfer" />
28
29 <ImageButton
30 android:id="@+id/action_hangup"
31 android:layout_width="0dp"
32 android:layout_height="match_parent"
33 android:layout_weight="1"
34 android:src="@drawable/ic_hangup" />
35
36</LinearLayout>