diff options
author | Kenny Root <kroot@google.com> | 2011-06-16 21:24:12 -0700 |
---|---|---|
committer | Kenny Root <kroot@google.com> | 2011-06-16 21:24:12 -0700 |
commit | f5c2404b772bfcfa1301b938845c5aed8908cdde (patch) | |
tree | 778094775ad3062b7193802b79d01796f0c101c6 /res | |
parent | 5c433293c938dd49146d4af04ef8fcdea4965bda (diff) | |
download | packages_apps_packageinstaller-f5c2404b772bfcfa1301b938845c5aed8908cdde.zip packages_apps_packageinstaller-f5c2404b772bfcfa1301b938845c5aed8908cdde.tar.gz packages_apps_packageinstaller-f5c2404b772bfcfa1301b938845c5aed8908cdde.tar.bz2 |
Fix layouts for both tablet and phone
Change-Id: Ibb208d4586f4b52fede380acede40153f322bd49
Diffstat (limited to 'res')
-rwxr-xr-x | res/layout/app_details.xml | 1 | ||||
-rwxr-xr-x | res/layout/install_confirm.xml | 2 | ||||
-rwxr-xr-x | res/layout/uninstall_confirm.xml | 6 | ||||
-rwxr-xr-x | res/layout/uninstall_progress.xml | 2 |
4 files changed, 7 insertions, 4 deletions
diff --git a/res/layout/app_details.xml b/res/layout/app_details.xml index b368370..1c6730a 100755 --- a/res/layout/app_details.xml +++ b/res/layout/app_details.xml @@ -22,6 +22,7 @@ installation screens <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/app_snippet" + android:layout_weight="1" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="16dip" diff --git a/res/layout/install_confirm.xml b/res/layout/install_confirm.xml index 6072579..a37c84d 100755 --- a/res/layout/install_confirm.xml +++ b/res/layout/install_confirm.xml @@ -26,7 +26,7 @@ android:orientation="vertical" android:layout_weight="1" android:layout_width="match_parent" - android:layout_height="wrap_content"> + android:layout_height="match_parent"> <TextView android:id="@+id/install_confirm_question" diff --git a/res/layout/uninstall_confirm.xml b/res/layout/uninstall_confirm.xml index b6b1c69..fa60058 100755 --- a/res/layout/uninstall_confirm.xml +++ b/res/layout/uninstall_confirm.xml @@ -25,9 +25,10 @@ xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" - android:layout_height="wrap_content"> + android:layout_height="match_parent"> <LinearLayout + android:layout_weight="1" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentTop="true" @@ -71,7 +72,8 @@ android:orientation="vertical" android:divider="?android:attr/dividerHorizontal" android:showDividers="beginning" - android:dividerPadding="16dip"> + android:dividerPadding="16dip" + android:paddingTop="16dip"> <LinearLayout style="?android:attr/buttonBarStyle" diff --git a/res/layout/uninstall_progress.xml b/res/layout/uninstall_progress.xml index 951f244..95df916 100755 --- a/res/layout/uninstall_progress.xml +++ b/res/layout/uninstall_progress.xml @@ -16,7 +16,7 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" - android:layout_height="wrap_content" + android:layout_height="match_parent" android:layout_weight="1" android:orientation="vertical"> <include |