blob: 4891275589077342fb8bf49859927154e35e2f2a [file] [log] [blame]
Jake Hambyca9812a2011-07-12 11:05:46 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4** Copyright 2011, The Android Open Source Project
5**
6** Licensed under the Apache License, Version 2.0 (the "License");
7** you may not use this file except in compliance with the License.
8** You may obtain a copy of the License at
9**
10** http://www.apache.org/licenses/LICENSE-2.0
11**
12** Unless required by applicable law or agreed to in writing, software
13** distributed under the License is distributed on an "AS IS" BASIS,
14** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15** See the License for the specific language governing permissions and
16** limitations under the License.
17*/
18-->
19
20<ScrollView
21 xmlns:android="http://schemas.android.com/apk/res/android"
22 android:layout_height="match_parent"
23 android:layout_width="match_parent">
24
25 <LinearLayout
26 xmlns:android="http://schemas.android.com/apk/res/android"
PauloftheWest10773b42014-09-16 12:29:17 -070027 android:paddingStart="16dip"
Jake Hambyca9812a2011-07-12 11:05:46 -070028 android:layout_height="match_parent"
29 android:layout_width="match_parent"
Salvador Martinez4d279a52016-09-30 13:59:30 -070030 android:layout_marginTop="@dimen/bluetooth_dialog_padding_top"
Jake Hambyca9812a2011-07-12 11:05:46 -070031 android:orientation="vertical">
32
33 <TextView
PauloftheWeste49c30e2014-08-15 06:05:42 -070034 android:id="@+id/pairing_caption"
35 android:layout_width="wrap_content"
36 android:layout_height="wrap_content"
Sanket Padawea7a4a5a2015-07-31 17:22:45 -070037 android:layout_marginTop="@dimen/bluetooth_dialog_padding"
PauloftheWeste49c30e2014-08-15 06:05:42 -070038 android:layout_marginStart="@dimen/bluetooth_dialog_padding"
39 android:layout_marginEnd="@dimen/bluetooth_dialog_padding"
40 android:gravity="center_vertical"
41 android:text="@string/bluetooth_pairing_key_msg"
42 android:visibility="gone"
jackqdyulei27f62fd2019-02-22 15:31:35 -080043 android:textAppearance="@*android:style/TextAppearance.DeviceDefault.Body1" />
PauloftheWeste49c30e2014-08-15 06:05:42 -070044
45 <TextView
46 android:id="@+id/pairing_subhead"
47 android:layout_width="wrap_content"
48 android:layout_height="wrap_content"
49 android:layout_marginStart="@dimen/bluetooth_dialog_padding"
50 android:layout_marginEnd="@dimen/bluetooth_dialog_padding"
51 android:layout_marginBottom="@dimen/bluetooth_dialog_padding"
52 android:gravity="center_vertical"
53 android:visibility="gone"
Amin Shaikha5e8bdd2018-12-19 14:42:59 -050054 android:textAppearance="@*android:style/TextAppearance.DeviceDefault.Headline" />
PauloftheWeste49c30e2014-08-15 06:05:42 -070055
56 <TextView
57 android:id="@+id/pairing_code_message"
58 android:layout_width="wrap_content"
59 android:layout_height="wrap_content"
60 android:layout_marginStart="@dimen/bluetooth_dialog_padding"
61 android:layout_marginEnd="@dimen/bluetooth_dialog_padding"
62 android:layout_marginBottom="@dimen/bluetooth_dialog_padding"
63 android:gravity="center_vertical"
64 android:text="@string/bluetooth_enter_passkey_msg"
Amin Shaikha5e8bdd2018-12-19 14:42:59 -050065 android:textAppearance="@*android:style/TextAppearance.DeviceDefault.Subhead"
PauloftheWeste49c30e2014-08-15 06:05:42 -070066 android:visibility="gone" />
Jake Hambyca9812a2011-07-12 11:05:46 -070067
Sanket Padawe2ef44c52015-06-12 18:09:45 -070068 <CheckBox
69 android:id="@+id/phonebook_sharing_message_confirm_pin"
Edward Jeea5397162014-09-04 22:18:21 -070070 android:layout_width="wrap_content"
71 android:layout_height="wrap_content"
72 android:layout_marginStart="@dimen/bluetooth_dialog_padding"
73 android:layout_marginEnd="@dimen/bluetooth_dialog_padding"
jackqdyulei27f62fd2019-02-22 15:31:35 -080074 android:textAppearance="@*android:style/TextAppearance.DeviceDefault.Body1" />
Edward Jeea5397162014-09-04 22:18:21 -070075
Jake Hambyca9812a2011-07-12 11:05:46 -070076 </LinearLayout>
77
78</ScrollView>