summaryrefslogtreecommitdiffstats
path: root/res/layout
diff options
context:
space:
mode:
authorJackson Fan <xyfan@motorola.com>2009-07-19 12:25:14 +0800
committerJaikumar Ganesh <jaikumar@google.com>2009-07-23 11:53:12 -0700
commit2c282d5898ac0916470ebfa9ff26ba784cf4bb24 (patch)
tree6f459a34f97d82ef7754617be3b25eafdc37a969 /res/layout
parenteb37b3c2c9d59bc1c0f09f911f5bde077a63f4da (diff)
downloadandroid_packages_apps_Bluetooth-2c282d5898ac0916470ebfa9ff26ba784cf4bb24.tar.gz
android_packages_apps_Bluetooth-2c282d5898ac0916470ebfa9ff26ba784cf4bb24.tar.bz2
android_packages_apps_Bluetooth-2c282d5898ac0916470ebfa9ff26ba784cf4bb24.zip
Add pbap into bluetooth package
Update PBAP as patchset 5 Adjust some resouces strings after UI test Change localized resource usage Modify exception handle, rename a confusing variable name Remove compile dependency on 240 for now. Add TODO in code Some minor changes to address the comments Submit on-behalf of Yue Lixin <a5206c@motorola.com> Update PBAP as patchset 4 according to comments Format resource files Re-organize the logs Submit on-behalf of Jiafa Liu <pbx376@motorola.com>
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/access.xml28
-rw-r--r--res/layout/auth.xml30
2 files changed, 58 insertions, 0 deletions
diff --git a/res/layout/access.xml b/res/layout/access.xml
new file mode 100644
index 000000000..9fdb9587c
--- /dev/null
+++ b/res/layout/access.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="utf-8"?>
+<ScrollView
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_height="fill_parent"
+ android:layout_width="fill_parent">
+
+ <LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_height="fill_parent"
+ android:layout_width="fill_parent"
+ android:orientation="vertical">
+
+ <TextView
+ android:id="@+id/message"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:gravity="center_horizontal"
+ android:textAppearance="?android:attr/textAppearanceMedium" />
+
+ <CheckBox android:id="@+id/alwaysallowed"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:textAppearance="?android:attr/textAppearanceSmall"
+ android:text="@string/alwaysallowed" />
+
+ </LinearLayout>
+
+</ScrollView>
diff --git a/res/layout/auth.xml b/res/layout/auth.xml
new file mode 100644
index 000000000..d6a35cd0d
--- /dev/null
+++ b/res/layout/auth.xml
@@ -0,0 +1,30 @@
+<ScrollView
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_height="fill_parent"
+ android:layout_width="fill_parent">
+
+ <LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_height="fill_parent"
+ android:layout_width="fill_parent"
+ android:orientation="vertical">
+
+ <TextView
+ android:id="@+id/message"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:gravity="center_horizontal"
+ android:textAppearance="?android:attr/textAppearanceMedium" />
+
+ <EditText
+ android:id="@+id/text"
+ android:layout_height="wrap_content"
+ android:layout_width="fill_parent"
+ android:layout_marginTop="20dip"
+ android:layout_marginLeft="20dip"
+ android:layout_marginRight="20dip"
+ android:singleLine="true" />
+
+ </LinearLayout>
+
+</ScrollView>