summaryrefslogtreecommitdiffstats
path: root/res/layout/running_service_details_service.xml
diff options
context:
space:
mode:
authorJeff Sharkey <jsharkey@android.com>2012-11-30 12:36:53 -0800
committerJeff Sharkey <jsharkey@android.com>2012-11-30 16:15:09 -0800
commit97d07fa3aedde44368818551dc789eaff7bfb047 (patch)
treedec682dae35f943a1251a98455c6db4f37d72f0d /res/layout/running_service_details_service.xml
parent6f8cd76870b01cd27333d3ddd8dcb3a7951e3375 (diff)
downloadpackages_apps_Settings-97d07fa3aedde44368818551dc789eaff7bfb047.zip
packages_apps_Settings-97d07fa3aedde44368818551dc789eaff7bfb047.tar.gz
packages_apps_Settings-97d07fa3aedde44368818551dc789eaff7bfb047.tar.bz2
Push scrollbars to screen edges.
Push scrollbar to screen edges on custom ListView and ScrollViews to match Preferences framework behavior. Bug: 7633165 Change-Id: Ideecd0e243c7de7bf977caef2b1585e707a00ca4
Diffstat (limited to 'res/layout/running_service_details_service.xml')
-rw-r--r--res/layout/running_service_details_service.xml25
1 files changed, 16 insertions, 9 deletions
diff --git a/res/layout/running_service_details_service.xml b/res/layout/running_service_details_service.xml
index 56cd971..706d1cf 100644
--- a/res/layout/running_service_details_service.xml
+++ b/res/layout/running_service_details_service.xml
@@ -33,16 +33,23 @@
layout="@layout/running_processes_item"
android:id="@+id/service"/>
- <TextView android:id="@+id/comp_description"
- android:layout_width="wrap_content"
+ <LinearLayout
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:paddingTop="8dp"
- android:paddingBottom="8dp"
- android:paddingStart="14dip"
- android:textAppearance="?android:attr/textAppearanceMedium" />
+ android:paddingStart="?android:attr/listPreferredItemPaddingStart"
+ android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
+ android:orientation="vertical">
- <include
- layout="@layout/two_buttons_panel"
- android:id="@+id/control_buttons_panel"/>
+ <TextView android:id="@+id/comp_description"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:paddingBottom="8dp"
+ android:textAppearance="?android:attr/textAppearanceMedium" />
+
+ <include
+ layout="@layout/two_buttons_panel"
+ android:id="@+id/control_buttons_panel" />
+
+ </LinearLayout>
</LinearLayout>