diff options
author | Dianne Hackborn <> | 2009-03-24 19:15:15 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2009-03-24 19:15:15 -0700 |
commit | b2d3e6047805691e20925a8453ef91bbde6db9f6 (patch) | |
tree | 01a84c75200eefc190361747bdfac0a2020e442f /res | |
parent | 097ed6c671ed733c0967acc32e017020ede4575b (diff) | |
download | packages_apps_settings-b2d3e6047805691e20925a8453ef91bbde6db9f6.zip packages_apps_settings-b2d3e6047805691e20925a8453ef91bbde6db9f6.tar.gz packages_apps_settings-b2d3e6047805691e20925a8453ef91bbde6db9f6.tar.bz2 |
Automated import from //branches/donutburger/...@141018,141018
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/installed_app_details.xml | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/res/layout/installed_app_details.xml b/res/layout/installed_app_details.xml index 4c06f99..7c8a672 100644 --- a/res/layout/installed_app_details.xml +++ b/res/layout/installed_app_details.xml @@ -265,6 +265,24 @@ android:layout_height="wrap_content" /> </RelativeLayout> + <!-- Other controls section --> + <TextView + style="?android:attr/listSeparatorTextViewStyle" + android:text="@string/controls_label" /> + + <RelativeLayout + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:layout_gravity="center_vertical"> + <Button android:id="@+id/force_stop_button" + android:layout_alignParentRight="true" + android:layout_alignParentTop="true" + android:layout_centerHorizontal="true" + android:layout_width="150dip" + android:text="@string/force_stop" + android:layout_height="wrap_content" /> + </RelativeLayout> + <!-- Permissions section --> <LinearLayout android:id="@+id/permissions_section" @@ -288,24 +306,6 @@ android:layout_height="fill_parent" android:orientation="vertical"/> </LinearLayout> - - <!-- Prefered activities section --> - <TextView - style="?android:attr/listSeparatorTextViewStyle" - android:text="@string/controls_label" /> - - <RelativeLayout - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:layout_gravity="center_vertical"> - <Button android:id="@+id/force_stop_button" - android:layout_alignParentRight="true" - android:layout_alignParentTop="true" - android:layout_centerHorizontal="true" - android:layout_width="150dip" - android:text="@string/force_stop" - android:layout_height="wrap_content" /> - </RelativeLayout> </LinearLayout> </ScrollView> |