49 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
		
		
			
		
	
	
			49 lines
		
	
	
		
			1.5 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="wrap_content" | ||
|  |     android:padding="10dp" | ||
|  |     android:orientation="vertical" | ||
|  |     android:background="@color/white" | ||
|  |     > | ||
|  |     <LinearLayout | ||
|  |         android:layout_width="match_parent" | ||
|  |         android:layout_height="wrap_content" | ||
|  |         android:layout_marginBottom="5dp" | ||
|  |         android:orientation="horizontal" | ||
|  |         android:gravity="center" | ||
|  |         > | ||
|  |         <Button | ||
|  |             android:id="@+id/btnCreateShudan" | ||
|  |             style="@style/buttonCates" | ||
|  |       android:drawableLeft="@drawable/ic_mood_black_24dp" | ||
|  |             android:layout_width="wrap_content" | ||
|  |         android:text="创建书单" | ||
|  |             android:layout_weight="0" | ||
|  |         /> | ||
|  |         <TextView | ||
|  |             android:layout_width="wrap_content" | ||
|  |             android:layout_height="wrap_content" | ||
|  |             android:layout_weight="0" | ||
|  |             android:text="|" | ||
|  |             android:layout_marginLeft="20dp" | ||
|  |             android:layout_marginRight="20dp" | ||
|  |             /> | ||
|  |     <Button | ||
|  |         android:id="@+id/btnMyShudan" | ||
|  |         style="@style/buttonCates" | ||
|  |         android:text="我的书单" | ||
|  |         android:layout_width="wrap_content" | ||
|  |     android:drawableLeft="@drawable/ic_toys_black_24dp" | ||
|  |         android:layout_weight="0" | ||
|  |         /> | ||
|  |     </LinearLayout> | ||
|  |     <Button | ||
|  |         android:id="@+id/btnCancel" | ||
|  |         style="@style/buttonCates" | ||
|  |         android:text="取消" | ||
|  |         android:layout_marginBottom="5dp" | ||
|  |         /> | ||
|  | </LinearLayout> | ||
|  | 
 |