project_files/Android-build/SDL-android-project/res/layout/download_info.xml
author sheepluva
Mon, 09 Nov 2015 19:21:40 +0100
changeset 11342 aa3f886c6298
parent 6433 c8e4b3f29e1e
permissions -rw-r--r--
fix hedgehog on parachute facing in wrong direction if parachute opens during double-jump

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="horizontal"
    android:gravity="center_vertical">
    <ImageView
        android:id="@+id/arrow"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="8"
        android:src="@drawable/arrow"
        android:adjustViewBounds="true"/>
    
    <RelativeLayout
        android:id="@+id/container"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="1"
        android:gravity="center"
        android:background="@drawable/box_dark">        
        <TextView
            android:id="@+id/text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="This package will higher quality sounds better sounds"/>
        
        <Button 
            android:id="@+id/download"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignLeft="@id/text"
            android:layout_below="@id/text"
            android:text="@string/download_downloadnow"/>        
        <Button 
            android:id="@+id/cancel"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignRight="@id/text"
            android:layout_below="@id/text"
            android:text="@android:string/no"/>
            
    </RelativeLayout>
    

</LinearLayout>