Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!--
      3 /*
      4 **
      5 ** Copyright 2013, The Android Open Source Project
      6 **
      7 ** Licensed under the Apache License, Version 2.0 (the "License");
      8 ** you may not use this file except in compliance with the License.
      9 ** You may obtain a copy of the License at
     10 **
     11 **     http://www.apache.org/licenses/LICENSE-2.0
     12 **
     13 ** Unless required by applicable law or agreed to in writing, software
     14 ** distributed under the License is distributed on an "AS IS" BASIS,
     15 ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     16 ** See the License for the specific language governing permissions and
     17 ** limitations under the License.
     18 */
     19 -->
     20 
     21 <merge xmlns:android="http://schemas.android.com/apk/res/android">
     22     <LinearLayout
     23         android:id="@+id/setup_step_bullets"
     24         android:layout_width="match_parent"
     25         android:layout_height="wrap_content"
     26         android:paddingTop="@dimen/setup_step_vertical_padding"
     27         android:orientation="horizontal">
     28         <TextView
     29             android:id="@+id/setup_step1_bullet"
     30             style="@style/setupStepBulletStyle"
     31             android:text="@string/setup_step1_bullet" />
     32         <TextView
     33             android:id="@+id/setup_step2_bullet"
     34             style="@style/setupStepBulletStyle"
     35             android:text="@string/setup_step2_bullet" />
     36         <TextView
     37             android:id="@+id/setup_step3_bullet"
     38             style="@style/setupStepBulletStyle"
     39             android:text="@string/setup_step3_bullet" />
     40     </LinearLayout>
     41     <com.android.inputmethod.latin.setup.SetupStepIndicatorView
     42         android:id="@+id/setup_step_indicator"
     43         style="@style/setupStepIndicatorStyle" />
     44     <FrameLayout
     45         android:id="@+id/setup_steps_pane"
     46         android:layout_width="match_parent"
     47         android:layout_height="wrap_content">
     48         <include
     49             android:id="@+id/setup_step1"
     50             layout="@layout/setup_step" />
     51         <include
     52             android:id="@+id/setup_step2"
     53             layout="@layout/setup_step" />
     54         <include
     55             android:id="@+id/setup_step3"
     56             layout="@layout/setup_step" />
     57     </FrameLayout>
     58     <TextView
     59         android:id="@+id/setup_next"
     60         android:text="@string/setup_next_action"
     61         android:gravity="end|center_vertical"
     62         style="@style/setupStepActionLabelStyleCommon"
     63         android:layout_marginTop="@dimen/setup_step_horizontal_line_height" />
     64     <TextView
     65         android:id="@+id/setup_finish"
     66         android:text="@string/setup_finish_action"
     67         style="@style/setupStepActionLabelStyle"
     68         android:layout_marginTop="@dimen/setup_step_horizontal_line_height" />
     69 </merge>
     70