summaryrefslogtreecommitdiffstats
path: root/res/layout/install_start.xml
diff options
context:
space:
mode:
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>