40 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
		
		
			
		
	
	
			40 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
|  | <?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:background="?attr/colorPrimary" | ||
|  |     android:orientation="horizontal" > | ||
|  |     <LinearLayout | ||
|  |         android:layout_width="match_parent" | ||
|  |         android:layout_height="wrap_content" | ||
|  |         android:layout_gravity="center_vertical" | ||
|  |         android:layout_weight="1" | ||
|  |         android:orientation="horizontal"> | ||
|  |         <Button | ||
|  |             android:id="@+id/btn_choose_all" | ||
|  |             android:layout_width="wrap_content" | ||
|  |             android:layout_height="wrap_content" | ||
|  |             android:layout_margin="5dp" | ||
|  |             android:layout_weight="1" | ||
|  |             android:text="@string/choose_all" | ||
|  |             android:gravity="center"/> | ||
|  |         <Button | ||
|  |             android:id="@+id/btn_delete" | ||
|  |             android:layout_width="wrap_content" | ||
|  |             android:layout_height="wrap_content" | ||
|  |             android:layout_margin="5dp" | ||
|  |             android:layout_weight="1" | ||
|  |             android:text="@string/delete" | ||
|  |             android:gravity="center"/> | ||
|  |     </LinearLayout> | ||
|  | 
 | ||
|  |     <Button | ||
|  |         android:id="@+id/btn_add_file" | ||
|  |         android:layout_width="match_parent" | ||
|  |         android:layout_height="wrap_content" | ||
|  |         android:layout_gravity="center_vertical" | ||
|  |         android:layout_weight="1" | ||
|  |         android:layout_margin="5dp" | ||
|  |         android:gravity="center"/> | ||
|  | </LinearLayout> |