OSDN Git Service

Update edit text padding on Bluetooth device renaming dialog
authorMatthew Fritze <mfritze@google.com>
Thu, 15 Sep 2016 01:00:41 +0000 (18:00 -0700)
committerMatthew Fritze <mfritze@google.com>
Thu, 15 Sep 2016 18:02:08 +0000 (11:02 -0700)
Change-Id: I490452925e1b66dd3f135b14c99a7a02ba238888
Fixes: 31383112
Test: Visually inspected

res/layout/dialog_edittext.xml

index 0da47a9..c534bf1 100644 (file)
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
-    android:paddingStart="8dip"
-    android:paddingEnd="8dip">
-    
-    <EditText 
+    android:paddingStart="20dp"
+    android:paddingEnd="20dp"
+    android:paddingTop="16dp"
+    android:paddingBottom="12dp"
+    >
+
+    <EditText
         android:id="@+id/edittext"
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:maxLength="50"
         android:singleLine="true"
     />
-        
 </LinearLayout>