33 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
| <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 | |
|     android:layout_width="match_parent"
 | |
|     android:layout_height="match_parent" >
 | |
| 
 | |
|     <include layout="@layout/zactivity_file_bottom"
 | |
|         android:id="@+id/layout_bottom"
 | |
|         android:layout_width="match_parent"
 | |
|         android:layout_height="wrap_content"
 | |
|         android:layout_alignParentBottom="true" />
 | |
| 
 | |
|     <ListView
 | |
|         android:id="@+id/listView"
 | |
|         android:layout_width="match_parent"
 | |
|         android:layout_height="match_parent"
 | |
|         android:cacheColorHint="#ffffffff"
 | |
|         android:clipToPadding="false"
 | |
|         android:divider="@null"
 | |
|         android:dividerHeight="0dp"
 | |
|         android:fadingEdge="none"
 | |
|         android:fadingEdgeLength="0dp"
 | |
|         android:layout_above="@id/layout_bottom" />
 | |
| 
 | |
|     <TextView
 | |
|         android:id="@+id/searchEmptyView"
 | |
|         android:layout_width="match_parent"
 | |
|         android:layout_height="match_parent"
 | |
|         android:layout_gravity="top"
 | |
|         android:gravity="center"
 | |
|         android:textColor="#808080"
 | |
|         android:textSize="20dp"
 | |
|         android:visibility="gone" />
 | |
| 
 | |
| </RelativeLayout> |