summaryrefslogtreecommitdiffstats
path: root/res/layout/install_confirm.xml
diff options
context:
space:
mode:
authorRomain Guy <romainguy@android.com>2010-01-08 15:07:05 -0800
committerRomain Guy <romainguy@android.com>2010-01-08 15:11:55 -0800
commite40d35ee030031d04dc6f8d53af5710ae16b351e (patch)
treed2d35a2a9e9e776cc410384bdd230968e2d5080d /res/layout/install_confirm.xml
parentae84c36bc5b7cc7979790d6793efafa1cb29ab08 (diff)
downloadpackages_apps_packageinstaller-e40d35ee030031d04dc6f8d53af5710ae16b351e.zip
packages_apps_packageinstaller-e40d35ee030031d04dc6f8d53af5710ae16b351e.tar.gz
packages_apps_packageinstaller-e40d35ee030031d04dc6f8d53af5710ae16b351e.tar.bz2
Deprecate fill_parent and introduce match_parent.
Bug: #2361749.
Diffstat (limited to 'res/layout/install_confirm.xml')
-rwxr-xr-xres/layout/install_confirm.xml10
1 files changed, 5 insertions, 5 deletions
diff --git a/res/layout/install_confirm.xml b/res/layout/install_confirm.xml
index 9634098..8039e5d 100755
--- a/res/layout/install_confirm.xml
+++ b/res/layout/install_confirm.xml
@@ -25,7 +25,7 @@
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_weight="1"
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
@@ -39,7 +39,7 @@
android:paddingBottom="20dip"/>
<ScrollView
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fillViewport="true"
android:layout_weight="1">
@@ -47,7 +47,7 @@
<!-- Security settings description. -->
<LinearLayout
android:id="@+id/permissions_section"
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginRight = "2dip"
android:orientation="vertical">
@@ -63,7 +63,7 @@
<LinearLayout
android:id="@+id/security_settings_list"
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1.0"
android:orientation="vertical"/>
@@ -73,7 +73,7 @@
<!-- OK confirm and cancel buttons. -->
<LinearLayout
android:background="@color/title_background"
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="bottom"
android:paddingTop="4dip"