blob: 21a335c4abef97c684a6ca7196a3af60baacc9bc [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"
Romain Guy8f19cdd2010-01-08 15:07:00 -080018 android:layout_width="match_parent"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080019 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"
Fabrice Di Megliocc11f742012-12-18 16:25:49 -080028 android:gravity="start"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080029 android:textAppearance="?android:attr/textAppearanceMedium" />
30
31 <EditText
32 android:id="@+id/folder_name"
33 android:layout_height="wrap_content"
Romain Guy8f19cdd2010-01-08 15:07:00 -080034 android:layout_width="match_parent"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080035 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>