summaryrefslogtreecommitdiffstats
path: root/res/layout/install_start.xml
diff options
context:
space:
mode:
authorKenny Root <kroot@google.com>2011-06-23 03:47:56 -0700
committerKenny Root <kroot@google.com>2011-06-23 04:04:22 -0700
commit8cdde96c39af256e62da0340187234046b2af5ab (patch)
tree942fd1b139f9e925f65a6a4f58e0fa38f17a120a /res/layout/install_start.xml
parent37d68303e770a3f8b3327317008a031357f5ed69 (diff)
downloadandroid_packages_apps_PackageInstaller-8cdde96c39af256e62da0340187234046b2af5ab.tar.gz
android_packages_apps_PackageInstaller-8cdde96c39af256e62da0340187234046b2af5ab.tar.bz2
android_packages_apps_PackageInstaller-8cdde96c39af256e62da0340187234046b2af5ab.zip
Fix layouts some more
Bug: 4770335 Change-Id: Iceef40eb1bf01457d715a21a5ebef942de484195
Diffstat (limited to 'res/layout/install_start.xml')
-rwxr-xr-xres/layout/install_start.xml16
1 files changed, 11 insertions, 5 deletions
diff --git a/res/layout/install_start.xml b/res/layout/install_start.xml
index 8f861cc6..5e0f9579 100755
--- a/res/layout/install_start.xml
+++ b/res/layout/install_start.xml
@@ -14,18 +14,24 @@
limitations under the License.
-->
-<LinearLayout
+<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<include
layout="@layout/app_details"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
android:id="@+id/app_snippet"/>
+
<include
- layout="@layout/install_confirm"
- android:id="@+id/install_confirm_panel"/>
-</LinearLayout>
+ layout="@layout/install_confirm"
+ android:id="@+id/install_confirm_panel"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_below="@id/app_snippet"
+ android:layout_alignParentBottom="true"/>
+</RelativeLayout>