diff options
author | Fabrice Di Meglio <fdimeglio@google.com> | 2014-08-08 12:56:51 -0700 |
---|---|---|
committer | Fabrice Di Meglio <fdimeglio@google.com> | 2014-08-08 12:56:51 -0700 |
commit | bbed3dfdfdf2fa2b0784cefddfef14b270a54563 (patch) | |
tree | bd67c2d23cfb5e5dcad5d604c0626de5d5069260 /res | |
parent | 1f4049edfe1937ce19c7d93a5576ea03db83ad50 (diff) | |
download | packages_apps_Settings-bbed3dfdfdf2fa2b0784cefddfef14b270a54563.zip packages_apps_Settings-bbed3dfdfdf2fa2b0784cefddfef14b270a54563.tar.gz packages_apps_Settings-bbed3dfdfdf2fa2b0784cefddfef14b270a54563.tar.bz2 |
Fix Wi-Fi Assistant padding
- use the standard list padding instead of a custom one
See bug: #15703202 Wi-Fi Assistant card needs to appear in Wi-Fi network list
Change-Id: I5816751bf7937807093e5b74b25b84151431fa7b
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/wifi_assistant_card.xml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/res/layout/wifi_assistant_card.xml b/res/layout/wifi_assistant_card.xml index a1917ba..529f9e9 100644 --- a/res/layout/wifi_assistant_card.xml +++ b/res/layout/wifi_assistant_card.xml @@ -21,7 +21,10 @@ android:layout_height="wrap_content" android:gravity="center_vertical" android:orientation="vertical" - android:padding="@dimen/wifi_assistant_padding"> + android:paddingStart="?android:attr/listPreferredItemPaddingStart" + android:paddingEnd="?android:attr/listPreferredItemPaddingEnd" + android:paddingTop="@dimen/wifi_assistant_padding" + android:paddingBottom="@dimen/wifi_assistant_padding"> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" |