Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2014 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 <!-- Fragment use to disambiguate between the user selecting protocol A and providers.xml
     18  indicating otherwise -->
     19 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     20               android:orientation="vertical"
     21               android:layout_width="match_parent"
     22               android:layout_height="match_parent">
     23     <TextView
     24             android:id="@+id/ab_instructions"
     25             android:layout_width="match_parent"
     26             android:layout_height="wrap_content"
     27             android:text="@string/account_setup_ab_instructions_format"
     28             style="@style/account_setup_info_text" />
     29     <!-- Spacer -->
     30     <View
     31             android:layout_height="0dp"
     32             android:layout_width="match_parent"
     33             android:layout_weight="1" />
     34     <Button
     35             android:id="@+id/ab_button_a"
     36             android:layout_height="@dimen/setup_account_ab_button_height"
     37             android:layout_width="@dimen/setup_account_ab_button_width"
     38             android:layout_marginTop="@dimen/setup_account_ab_button_vertical_spacing"
     39             android:minWidth="@dimen/setup_account_ab_button_min_width"
     40             android:layout_gravity="center_horizontal"
     41             />
     42     <Button
     43             android:id="@+id/ab_button_b"
     44             android:layout_height="@dimen/setup_account_ab_button_height"
     45             android:layout_width="@dimen/setup_account_ab_button_width"
     46             android:layout_marginTop="@dimen/setup_account_ab_button_vertical_spacing"
     47             android:minWidth="@dimen/setup_account_ab_button_min_width"
     48             android:layout_gravity="center_horizontal"
     49             />
     50 </LinearLayout>