Home | History | Annotate | Download | only in layout-sw600dp
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2010 The Android Open Source Project
      3 
      4      Licensed under the Apache License, Version 2.0 (the "License");
      5      you may not use this file except in compliance with the License.
      6      You may obtain a copy of the License at
      7 
      8           http://www.apache.org/licenses/LICENSE-2.0
      9 
     10      Unless required by applicable law or agreed to in writing, software
     11      distributed under the License is distributed on an "AS IS" BASIS,
     12      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13      See the License for the specific language governing permissions and
     14      limitations under the License.
     15 -->
     16 
     17 <!-- Account-type picker - tablet - see layout/ for small-screen version -->
     18 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
     19     android:layout_width="match_parent"
     20     android:layout_height="match_parent"
     21     android:paddingTop="@dimen/setup_padding_top"
     22     android:paddingLeft="@dimen/setup_padding_left"
     23     android:paddingRight="@dimen/setup_padding_right"
     24     >
     25 
     26     <!-- Headline and hairline divider -->
     27     <TextView
     28         android:id="@+id/headline"
     29         android:layout_alignParentTop="true"
     30         android:layout_alignParentLeft="true"
     31         android:layout_marginLeft="16dip"
     32         android:layout_width="wrap_content"
     33         android:layout_height="wrap_content"
     34         android:text="@string/account_setup_account_type_headline"
     35         android:textAppearance="@style/accountSetupHeadline" />
     36     <View
     37         android:id="@+id/top_divider"
     38         android:layout_below="@+id/headline"
     39         android:layout_marginBottom="16dip"
     40         android:layout_width="match_parent"
     41         android:layout_height="1dp"
     42         android:background="@color/account_setup_divider_color" />
     43 
     44     <!-- Layout on the left containing the setup info -->
     45     <RelativeLayout
     46         xmlns:android="http://schemas.android.com/apk/res/android"
     47         android:id="@+id/accountTypes"
     48         android:layout_below="@+id/top_divider"
     49         android:layout_alignParentLeft="true"
     50         android:layout_marginRight="64dip"
     51         android:layout_width="match_parent"
     52         android:layout_height="wrap_content" >
     53         <TextView
     54             android:id="@+id/instructions"
     55             android:layout_alignParentTop="true"
     56             android:layout_alignParentLeft="true"
     57             android:layout_width="match_parent"
     58             android:layout_height="wrap_content"
     59             android:layout_marginTop="16dip"
     60             android:layout_marginLeft="16dip"
     61             android:text="@string/account_setup_account_type_instructions"
     62             android:textAppearance="@style/accountSetupInfoText" />
     63     </RelativeLayout>
     64 
     65 </RelativeLayout>
     66