Home | History | Annotate | Download | only in layout-sw600dp-land
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!--
      3      Copyright (c) 2014 The Android Open Source Project
      4 
      5      Licensed under the Apache License, Version 2.0 (the "License");
      6      you may not use this file except in compliance with the License.
      7      You may obtain a copy of the License at
      8 
      9          http://www.apache.org/licenses/LICENSE-2.0
     10 
     11      Unless required by applicable law or agreed to in writing, software
     12      distributed under the License is distributed on an "AS IS" BASIS,
     13      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     14      See the License for the specific language governing permissions and
     15      limitations under the License.
     16 -->
     17 
     18 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     19     android:id="@+id/fragment"
     20     android:layout_width="match_parent"
     21     android:layout_height="match_parent"
     22     android:orientation="vertical">
     23 
     24     <com.android.settings.widget.SetupWizardIllustration
     25         android:layout_width="match_parent"
     26         android:layout_height="match_parent"
     27         android:layout_weight="1"
     28         android:foreground="@drawable/setup_illustration_wifi_wide"
     29         android:background="@drawable/setup_illustration_bg">
     30 
     31         <LinearLayout
     32             android:layout_width="match_parent"
     33             android:layout_height="match_parent"
     34             android:gravity="start|top"
     35             android:weightSum="16">
     36 
     37             <TextView
     38                 android:id="@+id/title"
     39                 style="@style/SetupCardTitle"
     40                 android:layout_width="1dp"
     41                 android:layout_height="wrap_content"
     42                 android:layout_marginTop="@dimen/setup_wizard_tablet_illustration_height"
     43                 android:layout_weight="6"
     44                 android:text="@string/wifi_setup_wizard_title"/>
     45 
     46             <LinearLayout
     47                 android:layout_width="1dp"
     48                 android:layout_height="match_parent"
     49                 android:layout_marginTop="@dimen/setup_wizard_card_land_margin_top"
     50                 android:layout_weight="8"
     51                 android:background="@drawable/setup_wizard_card_bg"
     52                 android:elevation="@dimen/setup_wizard_card_elevation"
     53                 android:orientation="vertical">
     54 
     55                 <TextView
     56                     android:id="@+id/wifi_required_info"
     57                     android:layout_width="match_parent"
     58                     android:layout_height="wrap_content"
     59                     android:layout_marginBottom="6dp"
     60                     android:text="@string/wifi_required_info_text"
     61                     android:textAppearance="?android:attr/textAppearanceMedium"
     62                     android:visibility="gone" />
     63 
     64                 <ListView
     65                     android:id="@android:id/list"
     66                     android:layout_width="match_parent"
     67                     android:layout_height="0dp"
     68                     android:layout_weight="1"
     69                     android:cacheColorHint="@android:color/transparent"
     70                     android:clipToPadding="false"
     71                     android:drawSelectorOnTop="false"
     72                     android:headerDividersEnabled="false"
     73                     android:scrollbarAlwaysDrawVerticalTrack="true" />
     74 
     75             </LinearLayout>
     76 
     77         </LinearLayout>
     78 
     79     </com.android.settings.widget.SetupWizardIllustration>
     80 
     81     <fragment android:name="com.android.setupwizard.navigationbar.SetupWizardNavBar"
     82         android:id="@+id/navigation_bar"
     83         style="@style/setup_wizard_navbar_style" />
     84 
     85 </LinearLayout>
     86 
     87