project_files/Android-build/SDL-android-project/res/layout/download.xml
author Xeli
Thu, 04 Aug 2011 17:34:21 +0200
branchhedgeroid
changeset 5467 88e25840f532
parent 5397 4ae1b082e4ba
permissions -rw-r--r--
Main activities for starting up the game, changing gameconfig, selecting and creating teams with their respective layouts and values

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
	android:id="@+id/container"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:padding="5dp">
    <ProgressBar
    	android:id="@+id/progressbar"
    	android:layout_width="wrap_content"
    	android:layout_height="wrap_content"
    	android:layout_alignLeft="@+id/background"
    	android:layout_alignRight="@+id/cancelDownload"
    	android:progressDrawable="@android:drawable/progress_horizontal"
		android:indeterminate="false" android:indeterminateOnly="false"/>
	<TextView
    	android:id="@+id/progressbar_sub"
    	android:layout_width="wrap_content"
    	android:layout_height="wrap_content"
    	android:layout_below="@id/progressbar"
    	android:layout_alignLeft="@+id/background"
    	android:layout_alignRight="@+id/cancelDownload"
    	android:text="@string/notification_title"
    	android:textColor="#FFF"
    	android:textSize="14dp"/> 	
    <Button
    	android:id="@id/background"
    	android:layout_width="wrap_content"
    	android:layout_height="wrap_content"
    	android:layout_below="@id/progressbar_sub"
    	android:text="@string/download_background"/>
    <Button
    	android:id="@+id/cancelDownload"
    	android:layout_width="wrap_content"
    	android:layout_height="wrap_content"
    	android:layout_below="@id/progressbar_sub"
    	android:layout_toRightOf="@id/background"
    	android:text="@string/download_cancel"/>
    	
</RelativeLayout>