39 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			XML
		
	
	
	
<?xml version="1.0" encoding="utf-8"?>
 | 
						|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 | 
						|
    android:layout_width="match_parent"
 | 
						|
    android:layout_height="match_parent"
 | 
						|
    android:orientation="vertical"
 | 
						|
    android:layout_gravity="top"
 | 
						|
    android:gravity="top" >
 | 
						|
 | 
						|
 | 
						|
    <ListView
 | 
						|
        android:id="@android:id/list"
 | 
						|
        android:layout_width="match_parent"
 | 
						|
        android:layout_height="match_parent" >
 | 
						|
    </ListView>
 | 
						|
 | 
						|
    <LinearLayout
 | 
						|
        android:id="@android:id/empty"
 | 
						|
        android:layout_width="match_parent"
 | 
						|
        android:layout_height="match_parent"
 | 
						|
        android:layout_marginTop="10dip">
 | 
						|
 | 
						|
        <TextView
 | 
						|
            android:layout_width="wrap_content"
 | 
						|
            android:layout_height="wrap_content"
 | 
						|
            android:textSize="20sp"
 | 
						|
            android:text="@string/finding_service" >
 | 
						|
        </TextView>
 | 
						|
 | 
						|
         <ProgressBar
 | 
						|
            android:layout_width="wrap_content"
 | 
						|
            android:layout_height="wrap_content"
 | 
						|
            android:layout_gravity="right"
 | 
						|
            android:layout_marginLeft="20dip"
 | 
						|
            style="@android:style/Widget.ProgressBar.Small" >
 | 
						|
        </ProgressBar>
 | 
						|
       
 | 
						|
    </LinearLayout>
 | 
						|
 | 
						|
</LinearLayout> |