Fix padding in dialogs
Padding around content area should be 24dp. See the Material Design spec: http://www.google.com/design/spec/components/dialogs.html#dialogs-specs
This commit is contained in:
		
							parent
							
								
									28ba6921d1
								
							
						
					
					
						commit
						8f2c827280
					
				| @ -2,12 +2,11 @@ | ||||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||||
| 	android:layout_width="fill_parent" | ||||
| 	android:layout_height="fill_parent" | ||||
| 	android:paddingLeft="8dp" | ||||
| 	android:paddingStart="8dp" | ||||
| 	android:paddingRight="8dp" | ||||
| 	android:paddingEnd="8dp" | ||||
| 	android:paddingTop="6dp" | ||||
| 	android:paddingBottom="6dp" | ||||
| 	android:paddingLeft="24dp" | ||||
| 	android:paddingStart="24dp" | ||||
| 	android:paddingRight="24dp" | ||||
| 	android:paddingEnd="24dp" | ||||
| 	android:paddingTop="20dp" | ||||
| 	android:baselineAligned="false" | ||||
| 	android:orientation="vertical"> | ||||
| 
 | ||||
|  | ||||
| @ -3,7 +3,11 @@ | ||||
|     xmlns:tools="http://schemas.android.com/tools" | ||||
|     android:layout_width="wrap_content" | ||||
|     android:layout_height="wrap_content" | ||||
|     android:padding="6dp"> | ||||
|     android:paddingLeft="24dp" | ||||
|     android:paddingStart="24dp" | ||||
|     android:paddingRight="24dp" | ||||
|     android:paddingEnd="24dp" | ||||
|     android:paddingTop="20dp"> | ||||
| 
 | ||||
|     <LinearLayout | ||||
|         android:id="@+id/add_repo_form" | ||||
|  | ||||
| @ -1,12 +1,17 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||||
|     android:layout_width="match_parent" | ||||
|     android:layout_height="match_parent" > | ||||
|     android:layout_height="match_parent" | ||||
|     android:paddingLeft="24dp" | ||||
|     android:paddingStart="24dp" | ||||
|     android:paddingRight="24dp" | ||||
|     android:paddingEnd="24dp" | ||||
|     android:paddingTop="20dp" > | ||||
| 
 | ||||
| 	<LinearLayout | ||||
| 	    android:id="@+id/reposcanprogresslayout" | ||||
| 	    android:layout_width="match_parent" | ||||
| 	    android:layout_height="50dp" | ||||
| 	    android:layout_height="wrap_content" | ||||
| 	    android:layout_alignParentTop="true" | ||||
| 	    android:layout_alignParentLeft="true" | ||||
| 	    android:layout_alignParentStart="true" | ||||
| @ -42,4 +47,4 @@ | ||||
| 		android:padding="8sp" | ||||
| 	/> | ||||
| 
 | ||||
| </RelativeLayout> | ||||
| </RelativeLayout> | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 relan
						relan