diff options
Diffstat (limited to 'res/values/styles.xml')
-rw-r--r-- | res/values/styles.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/res/values/styles.xml b/res/values/styles.xml index 361702e..3c87e22 100644 --- a/res/values/styles.xml +++ b/res/values/styles.xml @@ -80,4 +80,17 @@ <item name="android:textColor">?android:attr/textColorSecondary</item> <item name="android:textStyle">normal</item> </style> + + <style name="AutofillProfileTextView"> + <item name="android:layout_width">wrap_content</item> + <item name="android:layout_height">wrap_content</item> + <item name="android:gravity">center_vertical</item> + <item name="android:layout_margin">2dip</item> + <item name="android:textAppearance">?android:attr/textAppearanceMedium</item> + </style> + <style name="AutofillProfileEditText" parent="@style/AutofillProfileTextView"> + <item name="android:layout_width">match_parent</item> + <item name="android:imeOptions">flagNoExtractUi</item> + <item name="android:singleLine">true</item> + </style> </resources> |