• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2011 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<LinearLayout
18    xmlns:android="http://schemas.android.com/apk/res/android"
19    android:orientation="vertical"
20    android:layout_height="fill_parent"
21    android:layout_width="fill_parent">
22
23    <LinearLayout
24        android:id="@+id/content"
25        android:orientation="vertical"
26        android:layout_height="0dip"
27        android:layout_width="fill_parent"
28        android:layout_weight="1.0"
29        android:paddingLeft="15dip"
30        android:paddingRight="15dip">
31
32    </LinearLayout>
33
34    <LinearLayout
35        android:orientation="vertical"
36        android:layout_height="wrap_content"
37        android:layout_width="fill_parent"
38        android:paddingLeft="15dip"
39        android:paddingRight="15dip">
40
41        <View
42            android:layout_width="wrap_content"
43            android:layout_height="1dip"
44            android:layout_gravity="center"
45            android:background="@android:drawable/divider_horizontal_dark"
46            android:layout_marginBottom="8dip"
47            android:focusable="false"
48            android:clickable="false" />
49
50        <view
51            class="com.android.settings.AccessibilityTutorialActivity$TutorialTextView"
52            android:id="@+id/instructions"
53            android:layout_width="fill_parent"
54            android:layout_height="wrap_content"
55            android:layout_marginBottom="8dip"
56            android:textAppearance="@style/AccessibilityTutorialBodyTextPrimary" />
57
58    </LinearLayout>
59
60    <RelativeLayout
61        android:layout_height="wrap_content"
62        android:layout_width="fill_parent"
63        android:background="@android:drawable/bottom_bar">
64
65        <Button
66            android:id="@+id/skip_button"
67            style="@style/AccessibilityTutorialButton"
68            android:layout_alignParentLeft="true"
69            android:text="@string/accessibility_tutorial_skip"
70            android:visibility="gone" />
71
72        <Button
73            android:id="@+id/back_button"
74            style="@style/AccessibilityTutorialButton"
75            android:layout_alignParentLeft="true"
76            android:text="@string/accessibility_tutorial_back"
77            android:visibility="gone" />
78
79        <Button
80            android:id="@+id/next_button"
81            style="@style/AccessibilityTutorialButton"
82            android:layout_alignParentRight="true"
83            android:text="@string/accessibility_tutorial_next"
84            android:visibility="gone" />
85
86        <Button
87            android:id="@+id/finish_button"
88            style="@style/AccessibilityTutorialButton"
89            android:layout_alignParentRight="true"
90            android:text="@string/accessibility_tutorial_finish"
91            android:visibility="gone" />
92
93    </RelativeLayout>
94</LinearLayout>