diff options
author | Jeff Brown <jeffbrown@google.com> | 2012-09-19 20:46:07 -0700 |
---|---|---|
committer | Jeff Brown <jeffbrown@google.com> | 2012-09-19 21:37:20 -0700 |
commit | 9e143f5e9d836d2d3dd0b2f59f7d14327ade0193 (patch) | |
tree | 4a49bec915eda59800f90a7e22556710e4bff5da /res/layout/preference_progress_category.xml | |
parent | 99340f36cb0ed7bf84b0bae418a85132a01acb32 (diff) | |
download | packages_apps_settings-9e143f5e9d836d2d3dd0b2f59f7d14327ade0193.zip packages_apps_settings-9e143f5e9d836d2d3dd0b2f59f7d14327ade0193.tar.gz packages_apps_settings-9e143f5e9d836d2d3dd0b2f59f7d14327ade0193.tar.bz2 |
First draft of wifi display settings UI.
All of the functionality is in place but the UI is
not fully polished yet.
Bug: 7178216
Change-Id: Id76843bff05cc71e5c02a31bc97c7070d58fff10
Diffstat (limited to 'res/layout/preference_progress_category.xml')
-rw-r--r-- | res/layout/preference_progress_category.xml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/res/layout/preference_progress_category.xml b/res/layout/preference_progress_category.xml index 6e8188c..17d87d7 100644 --- a/res/layout/preference_progress_category.xml +++ b/res/layout/preference_progress_category.xml @@ -18,19 +18,18 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" style="?android:attr/listSeparatorTextViewStyle" android:gravity="center_vertical" - android:orientation="horizontal" - > + android:orientation="horizontal"> <!-- This text view has the style of the list separator text view without the background and padding. --> <TextView style="?android:attr/listSeparatorTextViewStyle" android:background="@null" - android:paddingStart="16dip" android:id="@+android:id/title" + android:paddingStart="0dp" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" - android:layout_gravity="start|bottom" + android:layout_gravity="start|center" /> <ProgressBar @@ -40,7 +39,6 @@ android:layout_height="wrap_content" android:layout_gravity="center_vertical" android:layout_marginStart="16dip" - android:layout_marginEnd="16dip" style="?android:attr/progressBarStyleSmallTitle" /> |