project_files/Android-build/SDL-android-project/res/layout/download_info.xml
branchhedgeroid
changeset 6350 41b0a9955c47
child 6433 c8e4b3f29e1e
equal deleted inserted replaced
6348:162fec525764 6350:41b0a9955c47
       
     1 <?xml version="1.0" encoding="utf-8"?>
       
     2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
       
     3     android:layout_width="match_parent"
       
     4     android:layout_height="match_parent"
       
     5     android:orientation="horizontal"
       
     6     android:gravity="center_vertical">
       
     7     <ImageView
       
     8         android:id="@+id/arrow"
       
     9         android:layout_width="match_parent"
       
    10         android:layout_height="wrap_content"
       
    11         android:layout_weight="8"
       
    12         android:src="@drawable/arrow"
       
    13         android:adjustViewBounds="true"/>
       
    14     
       
    15     <RelativeLayout
       
    16         android:id="@+id/container"
       
    17         android:layout_width="match_parent"
       
    18         android:layout_height="match_parent"
       
    19         android:layout_weight="1"
       
    20         android:gravity="center"
       
    21         android:background="@drawable/box_dark">        
       
    22         <TextView
       
    23             android:id="@+id/text"
       
    24             android:layout_width="wrap_content"
       
    25             android:layout_height="wrap_content"
       
    26             android:text="This package will higher quality sounds better sounds"/>
       
    27         
       
    28         <Button 
       
    29             android:id="@+id/download"
       
    30             android:layout_width="wrap_content"
       
    31             android:layout_height="wrap_content"
       
    32             android:layout_alignLeft="@id/text"
       
    33             android:layout_below="@id/text"
       
    34             android:text="@string/download_downloadnow"/>        
       
    35         <Button 
       
    36             android:id="@+id/cancel"
       
    37             android:layout_width="wrap_content"
       
    38             android:layout_height="wrap_content"
       
    39             android:layout_alignRight="@id/text"
       
    40             android:layout_below="@id/text"
       
    41             android:text="@android:string/no"/>
       
    42             
       
    43     </RelativeLayout>
       
    44     
       
    45 
       
    46 </LinearLayout>