summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2010-05-19 08:30:08 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2010-05-19 08:30:08 -0700
commit50c7f2d92a8100982c49027058fb05069e4a1e2a (patch)
treebea0b1522d803732ddaa5ddeda0d857d363cca0b /res
parentfcc577b2a15c37c1bbed995c27a48594dc43dfef (diff)
parentde6007cbf839a6842243a09e93dc7840e30a822c (diff)
downloadpackages_apps_Settings-50c7f2d92a8100982c49027058fb05069e4a1e2a.zip
packages_apps_Settings-50c7f2d92a8100982c49027058fb05069e4a1e2a.tar.gz
packages_apps_Settings-50c7f2d92a8100982c49027058fb05069e4a1e2a.tar.bz2
merge from open-source master
Change-Id: I5698914cf9093696ad851412a510a99419989d17
Diffstat (limited to 'res')
-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>