You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
	
	
		
			45 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			XML
		
	
		
		
			
		
	
	
			45 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			XML
		
	
| 
											9 years ago
										 | <?xml version="1.0" encoding="utf-8"?> | ||
|  | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
|  |               xmlns:tools="http://schemas.android.com/tools" | ||
|  |               xmlns:app="http://schemas.android.com/apk/res-auto" | ||
|  |               android:id="@+id/activity_main" | ||
|  |               android:layout_width="match_parent" | ||
|  |               android:layout_height="match_parent" | ||
|  |               android:orientation="vertical" | ||
|  |               tools:context="org.thoughtcrime.securesms.scribbles.ScribbleActivity"> | ||
|  | 
 | ||
|  |     <org.thoughtcrime.securesms.scribbles.ScribbleToolbar | ||
|  |             android:id="@+id/toolbar" | ||
|  |             android:layout_width="match_parent" | ||
|  |             android:layout_height="wrap_content" | ||
|  |             android:background="@color/white"/> | ||
|  | 
 | ||
|  |     <FrameLayout android:layout_weight="1" | ||
|  |                   android:layout_width="match_parent" | ||
|  |                   android:layout_height="0dp" | ||
|  |                   android:layout_gravity="center" | ||
|  |                  android:background="@color/grey_300" | ||
|  |                   android:gravity="center"> | ||
|  | 
 | ||
|  |         <org.thoughtcrime.securesms.scribbles.widget.ScribbleView | ||
|  |                 android:id="@+id/scribble_view" | ||
|  |                 android:layout_width="wrap_content" | ||
|  |                 android:layout_height="wrap_content" | ||
|  |                 android:layout_gravity="center" | ||
|  |                 android:gravity="center"/> | ||
|  | 
 | ||
|  |         <org.thoughtcrime.securesms.scribbles.widget.VerticalSlideColorPicker | ||
|  |                 android:id="@+id/scribble_color_picker" | ||
|  |                 android:layout_width="13dp" | ||
|  |                 android:layout_height="300dp" | ||
|  |                 android:layout_gravity="top|right" | ||
|  |                 android:layout_marginRight="25dp" | ||
|  |                 android:layout_marginTop="20dp" | ||
|  |                 app:pickerBorderWidth="1dp" | ||
|  |                 app:pickerBorderColor="@color/grey_600" | ||
|  |                 app:pickerColors="@array/scribble_colors"/> | ||
|  | 
 | ||
|  |     </FrameLayout> | ||
|  | 
 | ||
|  | </LinearLayout> |