43 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.6 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:background="@color/white"
 | |
|     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"
 | |
|             style="@style/setting_dialog_button"
 | |
|             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"
 | |
|             style="@style/setting_dialog_button"
 | |
|             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"
 | |
|         style="@style/setting_dialog_button"
 | |
|         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>
 |