res/layout/wizard_account.xml
changeset 703 8cd09cb7b00b
parent 699 aa9aa525a5a6
child 767 74a987c3efb5
equal deleted inserted replaced
702:f30ae9c4051e 703:8cd09cb7b00b
     1 <?xml version="1.0" encoding="utf-8"?>
     1 <?xml version="1.0" encoding="utf-8"?>
     2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
     2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     3     android:layout_height="fill_parent" android:layout_width="fill_parent"
     3     android:layout_height="fill_parent" android:layout_width="fill_parent"
       
     4     android:orientation="vertical"
     4     >
     5     >
     5     <TextView android:id="@+id/wizard_account_tv"
     6     <ScrollView android:layout_height="fill_parent" android:layout_width="fill_parent" 
     6 	android:layout_width="fill_parent" android:layout_height="wrap_content"
     7 	android:layout_weight="1">
     7 	android:layout_alignParentTop="true"
     8 	<LinearLayout android:layout_height="wrap_content" android:layout_width="fill_parent"
     8 	android:text="@string/account_wizard_text1"
     9 	    android:orientation="vertical" >
     9 	android:textSize="18sp"
    10 	    <ImageView android:id="@+id/logo"
    10 	android:paddingBottom="10dip" />
    11 		android:layout_width="fill_parent" android:layout_height="wrap_content"
    11     <RadioGroup android:layout_width="fill_parent" android:layout_height="wrap_content"
    12 		android:layout_marginTop="15dp"
    12 	android:layout_below="@id/wizard_account_tv" >
    13 		android:layout_marginBottom="30dp"
    13 	<RadioButton android:id="@+id/configure_account"
    14 		android:src="@drawable/logo"/>
    14 	    android:layout_width="fill_parent" android:layout_height="wrap_content"
    15 	    <TextView
    15 	    android:text="@string/account_wizard_configure_account"/>
    16 		android:layout_width="fill_parent" android:layout_height="wrap_content"
    16 	<RadioButton android:id="@+id/create_account"
    17 		android:text="@string/account_wizard_text1"
    17 	    android:layout_width="fill_parent" android:layout_height="wrap_content"
    18 		android:textSize="18sp"
    18 	    android:text="@string/account_wizard_create_account"/>
    19 		android:paddingBottom="10dip" />
    19 	
    20 	    <RadioGroup android:id="@+id/configure_group"
    20     </RadioGroup>
    21 		android:layout_width="fill_parent" android:layout_height="wrap_content" >
       
    22 		<RadioButton android:id="@+id/configure_account"
       
    23 		    android:layout_width="fill_parent" android:layout_height="wrap_content"
       
    24 		    android:text="@string/account_wizard_configure_account"/>
       
    25 		<RadioButton android:id="@+id/create_account"
       
    26 		    android:layout_width="fill_parent" android:layout_height="wrap_content"
       
    27 		    android:text="@string/account_wizard_create_account"/>
       
    28 	    </RadioGroup>
       
    29 	</LinearLayout>
       
    30     </ScrollView>
    21 
    31 
    22     <RelativeLayout
    32     <RelativeLayout
    23 	android:layout_alignParentBottom="true"
    33 	android:layout_alignParentBottom="true"
    24 	android:gravity="right" 
    34 	android:gravity="right|center_vertical"
    25 	android:layout_height="wrap_content"
    35 	android:layout_height="wrap_content"
    26 	android:layout_width="fill_parent"
    36 	android:layout_width="fill_parent"
    27 	android:background="@drawable/bottombar" >
    37 	android:background="@drawable/bottombar" >
    28 	<Button
    38 	<Button
    29 	    android:id="@+id/next"
    39 	    android:id="@+id/next"
    32 	    android:layout_height="wrap_content"
    42 	    android:layout_height="wrap_content"
    33 	    android:layout_width="wrap_content"
    43 	    android:layout_width="wrap_content"
    34 	    android:drawableRight="@drawable/button_indicator_next"
    44 	    android:drawableRight="@drawable/button_indicator_next"
    35 	    android:layout_alignParentRight="true"
    45 	    android:layout_alignParentRight="true"
    36 	    android:layout_centerVertical="true"
    46 	    android:layout_centerVertical="true"
       
    47 	    android:enabled="false"
    37 	    />
    48 	    />
    38     </RelativeLayout>
    49     </RelativeLayout>
    39 
    50 
    40 </RelativeLayout>
    51 </LinearLayout>