summaryrefslogtreecommitdiffstats
path: root/res/layout
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2010-05-19 09:17:07 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2010-05-19 09:17:07 -0700
commitba10561babf3c7e2cda75889cac4c5180b601042 (patch)
treea40fbc82a40fc55675bacf481c2ca1a3146b406b /res/layout
parent777e06c16403d8d7ef725906b1d16fcfac89c5fe (diff)
parentb6c756d5216d3f402f1d433c0781064416bed292 (diff)
downloadpackages_apps_Settings-ba10561babf3c7e2cda75889cac4c5180b601042.zip
packages_apps_Settings-ba10561babf3c7e2cda75889cac4c5180b601042.tar.gz
packages_apps_Settings-ba10561babf3c7e2cda75889cac4c5180b601042.tar.bz2
am b6c756d5: am 50c7f2d9: merge from open-source master
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/master_clear_primary.xml36
1 files changed, 20 insertions, 16 deletions
diff --git a/res/layout/master_clear_primary.xml b/res/layout/master_clear_primary.xml
index ffac171..2c4156b 100644
--- a/res/layout/master_clear_primary.xml
+++ b/res/layout/master_clear_primary.xml
@@ -17,23 +17,27 @@
** limitations under the License.
*/
-->
-
<LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- style="@style/info_layout">
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ style="@style/info_layout">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textSize="18sp"
- android:text="@string/master_clear_desc" />
+ <ScrollView
+ android:layout_width="fill_parent"
+ android:layout_height="0dip"
+ android:layout_weight="1">
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:textSize="18sp"
+ android:text="@string/master_clear_desc" />
+ </ScrollView>
+ <Button
+ android:id="@+id/initiate_master_clear"
+ android:layout_gravity="center_horizontal"
+ android:layout_marginTop="20dip"
+ android:layout_width="150dip"
+ android:layout_height="wrap_content"
+ android:text="@string/master_clear_button_text"
+ android:gravity="center" />
- <Button android:id="@+id/initiate_master_clear"
- android:layout_gravity="center_horizontal"
- android:layout_marginTop="40dip"
- android:layout_width="150dip"
- android:layout_height="wrap_content"
- android:text="@string/master_clear_button_text"
- android:gravity="center" />
-
</LinearLayout>