blob: 1900b6e390b599ffac0bc8c23fe3971b81762ca4 [file] [log] [blame]
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3/* //device/apps/Settings/assets/res/layout/bluetooth_pairing_panel.xml
4**
5** Copyright 2006, 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<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
21 android:orientation="vertical"
22 android:layout_width="fill_parent"
23 android:layout_height="fill_parent">
24
25 <TextView android:id="@+id/dataLabel"
26 android:layout_width="fill_parent"
27 android:layout_height="wrap_content"
28 android:text="@string/bluetooth_new_data" />
29
30 <EditText android:id="@+id/dataEntry"
31 android:layout_marginTop="2dip"
32 android:layout_width="fill_parent"
33 android:layout_height="wrap_content"
34 android:scrollHorizontally="true"
35 android:autoText="false"
36 android:capitalize="none"
37 android:singleLine="true"
38 android:password="true"
39 android:maxLines="1" />
40 <LinearLayout
41 android:orientation="horizontal"
42 android:layout_width="fill_parent"
43 android:layout_height="wrap_content">
44
45 <Button android:id="@+id/confirmButton"
46 android:layout_width="fill_parent"
47 android:layout_height="wrap_content"
48 android:layout_weight="0.5"
49 android:text="@string/bluetooth_new_data_confirm" />
50
51 <Button android:id="@+id/cancelButton"
52 android:layout_width="fill_parent"
53 android:layout_height="wrap_content"
54 android:layout_weight="0.5"
55 android:text="@string/bluetooth_new_data_cancel" />
56
57 </LinearLayout>
58</LinearLayout>
59