summaryrefslogtreecommitdiffstats
path: root/res/layout
diff options
context:
space:
mode:
authorJaikumar Ganesh <jaikumar@google.com>2009-09-11 16:20:52 -0700
committerJaikumar Ganesh <jaikumar@google.com>2009-09-11 16:26:12 -0700
commit53647ab9a3f5efdf97c58b2432b37236b38264f9 (patch)
tree122ee7fa377b0069afa712cfc146ffca6158f2a8 /res/layout
parentbd540686f027d3d590c08821d7192366362b8dd2 (diff)
downloadandroid_packages_apps_Bluetooth-53647ab9a3f5efdf97c58b2432b37236b38264f9.tar.gz
android_packages_apps_Bluetooth-53647ab9a3f5efdf97c58b2432b37236b38264f9.tar.bz2
android_packages_apps_Bluetooth-53647ab9a3f5efdf97c58b2432b37236b38264f9.zip
Fix incoming file transfer dialog look and feel.
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/confirm_dialog.xml46
1 files changed, 40 insertions, 6 deletions
diff --git a/res/layout/confirm_dialog.xml b/res/layout/confirm_dialog.xml
index 6c0a81bbc..20c3b277d 100644
--- a/res/layout/confirm_dialog.xml
+++ b/res/layout/confirm_dialog.xml
@@ -1,8 +1,42 @@
<?xml version="1.0" encoding="utf-8"?>
-<TextView xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/content"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dip"
-/>
+<!--
+/*
+** 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="fill_parent"
+ android:layout_width="fill_parent">
+
+ <LinearLayout
+ android:layout_height="fill_parent"
+ android:layout_width="fill_parent"
+ android:orientation="vertical">
+
+ <TextView
+ android:id="@+id/content"
+ android:layout_width="fill_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>