diff options
author | Matthew Xie <mattx@google.com> | 2011-07-07 12:27:41 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-07-07 12:27:41 -0700 |
commit | 722934dbbc9c3aca86d5827453afa9f7d4c7b87f (patch) | |
tree | b66e8dd65b24cc293c5cfa50a6802b0ad1552ce6 /res/layout | |
parent | 945e383833c77101eb415b28bad4d1c6dfe85485 (diff) | |
parent | dbed12020c87d686ddcdbdbb8fba8f7b43a4e8d3 (diff) | |
download | packages_apps_settings-722934dbbc9c3aca86d5827453afa9f7d4c7b87f.zip packages_apps_settings-722934dbbc9c3aca86d5827453afa9f7d4c7b87f.tar.gz packages_apps_settings-722934dbbc9c3aca86d5827453afa9f7d4c7b87f.tar.bz2 |
Merge "Show user dialog for BT connection and phonebook access"
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/bluetooth_connection_access.xml | 40 | ||||
-rw-r--r-- | res/layout/bluetooth_pb_access.xml | 48 |
2 files changed, 88 insertions, 0 deletions
diff --git a/res/layout/bluetooth_connection_access.xml b/res/layout/bluetooth_connection_access.xml new file mode 100644 index 0000000..1e74162 --- /dev/null +++ b/res/layout/bluetooth_connection_access.xml @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* +** Copyright 2011, The Android Open Source Project +** +** Licensed under the Apache License, Version 2.0 (the "License"); +** you may not use this file except in compliance with the License. +** You may obtain a copy of the License at +** +** http://www.apache.org/licenses/LICENSE-2.0 +** +** Unless required by applicable law or agreed to in writing, software +** distributed under the License is distributed on an "AS IS" BASIS, +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +** See the License for the specific language governing permissions and +** limitations under the License. +*/ +--> + +<ScrollView + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_height="match_parent" + android:layout_width="match_parent"> + + <LinearLayout + android:layout_height="match_parent" + android:layout_width="match_parent" + android:orientation="vertical"> + + <TextView + android:id="@+id/message" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginLeft="20dip" + android:layout_marginRight="20dip" + android:gravity="center_horizontal" + android:textAppearance="?android:attr/textAppearanceMedium" /> + </LinearLayout> + +</ScrollView> diff --git a/res/layout/bluetooth_pb_access.xml b/res/layout/bluetooth_pb_access.xml new file mode 100644 index 0000000..80f78a6 --- /dev/null +++ b/res/layout/bluetooth_pb_access.xml @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* +** Copyright 2009, The Android Open Source Project +** +** Licensed under the Apache License, Version 2.0 (the "License"); +** you may not use this file except in compliance with the License. +** You may obtain a copy of the License at +** +** http://www.apache.org/licenses/LICENSE-2.0 +** +** Unless required by applicable law or agreed to in writing, software +** distributed under the License is distributed on an "AS IS" BASIS, +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +** See the License for the specific language governing permissions and +** limitations under the License. +*/ +--> + +<ScrollView + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_height="match_parent" + android:layout_width="match_parent"> + + <LinearLayout + android:layout_height="match_parent" + android:layout_width="match_parent" + android:orientation="vertical"> + + <TextView + android:id="@+id/message" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginLeft="20dip" + android:layout_marginRight="20dip" + android:gravity="center_horizontal" + android:textAppearance="?android:attr/textAppearanceMedium" /> + + <CheckBox android:id="@+id/bluetooth_pb_alwaysallowed" + style="?android:attr/textAppearanceMedium" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginTop="2dip" + android:text="@string/bluetooth_pb_alwaysallowed" /> + + </LinearLayout> + +</ScrollView> |