summaryrefslogtreecommitdiffstats
path: root/res/layout
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2009-09-03 13:33:55 -0700
committerDianne Hackborn <hackbod@google.com>2009-09-03 13:33:55 -0700
commit76315391f07d022e31c176633ae3aeaee5bb14ec (patch)
tree04cb1512f7f3fbee8d34f068cde44ad062ee4aa6 /res/layout
parent5b41931e1f94b2051b7c015081465f19a33096f9 (diff)
downloadpackages_apps_settings-76315391f07d022e31c176633ae3aeaee5bb14ec.zip
packages_apps_settings-76315391f07d022e31c176633ae3aeaee5bb14ec.tar.gz
packages_apps_settings-76315391f07d022e31c176633ae3aeaee5bb14ec.tar.bz2
Improve running services to services managed by the system.
Also a little tweak to the animations preference. Change-Id: I3183ef21e687a3b120d02c79e7388300084b9202
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/running_services_item.xml38
1 files changed, 19 insertions, 19 deletions
diff --git a/res/layout/running_services_item.xml b/res/layout/running_services_item.xml
index 6748a1a..2728c76 100644
--- a/res/layout/running_services_item.xml
+++ b/res/layout/running_services_item.xml
@@ -50,30 +50,21 @@
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
- <TextView android:id="@+id/name"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceMedium"
- android:textStyle="bold"
- android:singleLine="true"
- android:ellipsize="marquee"
- android:layout_marginBottom="2dip" />
<LinearLayout
android:orientation="horizontal"
+ android:baselineAlignedChildIndex="0"
android:layout_width="fill_parent"
- android:layout_height="wrap_content" >
- <TextView android:id="@+id/run_time"
- android:layout_marginTop="-4dip"
- android:layout_gravity="center_vertical|left"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
+ android:layout_height="wrap_content">
+ <TextView android:id="@+id/name"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
android:layout_weight="1"
- android:paddingRight="4dip"
- android:singleLine="true"
- android:ellipsize="marquee"
- android:textAppearance="?android:attr/textAppearanceSmall" />
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:textStyle="bold"
+ android:singleLine="true"
+ android:ellipsize="marquee"
+ android:layout_marginBottom="2dip" />
<TextView android:id="@+id/size"
- android:layout_marginTop="-4dip"
android:layout_gravity="center_vertical|right"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@@ -81,6 +72,15 @@
android:singleLine="true"
android:textAppearance="?android:attr/textAppearanceSmall" />
</LinearLayout>
+ <TextView android:id="@+id/description"
+ android:layout_marginTop="-4dip"
+ android:layout_gravity="center_vertical|left"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:paddingRight="4dip"
+ android:singleLine="true"
+ android:ellipsize="marquee"
+ android:textAppearance="?android:attr/textAppearanceSmall" />
</LinearLayout>
</LinearLayout>
</LinearLayout>