49 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<?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:background="@drawable/starfield"
 | 
						|
    android:orientation="horizontal" >
 | 
						|
 | 
						|
    <ImageView
 | 
						|
        android:layout_width="wrap_content"
 | 
						|
        android:layout_height="match_parent"
 | 
						|
        android:layout_weight="4"
 | 
						|
        android:src="@drawable/rocketglobe" />
 | 
						|
 | 
						|
    <LinearLayout
 | 
						|
        android:layout_width="wrap_content"
 | 
						|
        android:layout_height="match_parent"
 | 
						|
        android:layout_weight="4"
 | 
						|
        android:orientation="vertical" >
 | 
						|
 | 
						|
        <ImageView
 | 
						|
            android:layout_width="match_parent"
 | 
						|
            android:layout_height="wrap_content"
 | 
						|
            android:layout_weight="2"
 | 
						|
            android:gravity="center_horizontal"
 | 
						|
            android:src="@drawable/openrocket" />
 | 
						|
 | 
						|
        <LinearLayout
 | 
						|
            android:layout_width="match_parent"
 | 
						|
            android:layout_height="wrap_content"
 | 
						|
            android:layout_gravity="bottom"
 | 
						|
            android:layout_weight="1"
 | 
						|
            android:gravity="center"
 | 
						|
            android:orientation="horizontal" >
 | 
						|
 | 
						|
            <Button
 | 
						|
                android:id="@+id/main_open"
 | 
						|
                android:layout_width="wrap_content"
 | 
						|
                android:layout_height="wrap_content"
 | 
						|
                android:text="View ork file" />
 | 
						|
 | 
						|
            <Button
 | 
						|
                android:id="@+id/main_browse"
 | 
						|
                android:layout_width="wrap_content"
 | 
						|
                android:layout_height="wrap_content"
 | 
						|
                android:text="View motors" />
 | 
						|
        </LinearLayout>
 | 
						|
    </LinearLayout>
 | 
						|
 | 
						|
</LinearLayout> |