1<?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    android:layout_gravity="top"
7    android:gravity="top" >
8
9
10    <ListView
11        android:id="@android:id/list"
12        android:layout_width="match_parent"
13        android:layout_height="match_parent" >
14    </ListView>
15
16    <LinearLayout
17        android:id="@android:id/empty"
18        android:layout_width="match_parent"
19        android:layout_height="match_parent"
20        android:layout_marginTop="10dip">
21
22        <TextView
23            android:layout_width="wrap_content"
24            android:layout_height="wrap_content"
25            android:textSize="20sp"
26            android:text="@string/finding_service" >
27        </TextView>
28
29         <ProgressBar
30            android:layout_width="wrap_content"
31            android:layout_height="wrap_content"
32            android:layout_gravity="right"
33            android:layout_marginLeft="20dip"
34            style="@android:style/Widget.ProgressBar.Small" >
35        </ProgressBar>
36
37    </LinearLayout>
38
39</LinearLayout>