blob: cbb42b4d72f7727be16fc894b99be465b749cf18 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
18 android:layout_width="fill_parent"
19 android:layout_height="wrap_content"
20 android:padding="20dip"
21 android:orientation="vertical">
22
23 <TextView
Romain Guy73b979d2009-06-09 12:57:21 -070024 android:id="@+id/label"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080025 android:layout_height="wrap_content"
26 android:layout_width="wrap_content"
27 android:text="@string/rename_folder_label"
28 android:gravity="left"
29 android:textAppearance="?android:attr/textAppearanceMedium" />
30
31 <EditText
32 android:id="@+id/folder_name"
33 android:layout_height="wrap_content"
34 android:layout_width="fill_parent"
35 android:scrollHorizontally="true"
36 android:autoText="false"
37 android:capitalize="none"
38 android:gravity="fill_horizontal"
Romain Guy68634c12009-07-15 15:19:44 -070039 android:maxLength="30"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080040 android:textAppearance="?android:attr/textAppearanceMedium" />
41
42</LinearLayout>