blob: bd293be3d0c839e2f77959916e0f5992d2a7595d [file] [log] [blame]
alision1005ba12013-06-19 13:52:44 -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="match_parent"
5 android:orientation="vertical" >
6
7 <TextView
8 android:id="@+id/create_conf"
9 android:layout_width="wrap_content"
10 android:layout_height="wrap_content"
11 android:text="Create conference with:" />
12
13 <ListView
14 android:id="@+id/concurrent_calls"
15 android:layout_width="match_parent"
16 android:layout_height="wrap_content"
17 android:clickable="true"
18 android:focusable="true"
19 android:focusableInTouchMode="true" />
20
21 <TextView
22 android:id="@+id/empty_view"
alision50fa0722013-06-25 17:29:44 -040023 android:layout_width="match_parent"
alision1005ba12013-06-19 13:52:44 -040024 android:layout_height="wrap_content"
alision50fa0722013-06-25 17:29:44 -040025 android:text="No other calls pending"
26 android:gravity="center" />
alision1005ba12013-06-19 13:52:44 -040027
28
29</LinearLayout>