diff options
| author | 2016-05-23 09:43:42 -0700 | |
|---|---|---|
| committer | 2016-05-23 09:54:39 -0700 | |
| commit | 8aa4856f22f2f0f2056032eed22e3db249e9707f (patch) | |
| tree | 31c6d8cedb480a77f3ce6a6685ccfc54062e37b5 | |
| parent | 625f97ba3b4b0da653bf9da3a8336431f7b4f50e (diff) | |
Correct height of add printer list separator
Do not use listPreferredItemHeightSmall a height for list separator.
Fixes: 28907033
Change-Id: Ibe9744f28e7bd17fb5a298fa3cff0e3d403de10f
| -rw-r--r-- | packages/PrintSpooler/res/layout/add_printer_list_header.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/PrintSpooler/res/layout/add_printer_list_header.xml b/packages/PrintSpooler/res/layout/add_printer_list_header.xml index ff342cbbb0fa..9eee0c46c124 100644 --- a/packages/PrintSpooler/res/layout/add_printer_list_header.xml +++ b/packages/PrintSpooler/res/layout/add_printer_list_header.xml @@ -16,7 +16,8 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" - android:layout_height="?android:attr/listPreferredItemHeightSmall" + android:layout_height="wrap_content" + android:minHeight="?android:attr/listPreferredItemHeightSmall" android:paddingStart="?android:attr/listPreferredItemPaddingStart" android:paddingEnd="?android:attr/listPreferredItemPaddingEnd" android:orientation="horizontal" |