The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1 | <?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 Guy | 8f19cdd | 2010-01-08 15:07:00 -0800 | [diff] [blame] | 18 | android:layout_width="match_parent" |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 19 | android:layout_height="wrap_content" |
| 20 | android:padding="20dip" |
| 21 | android:orientation="vertical"> |
| 22 | |
| 23 | <TextView |
Romain Guy | 73b979d | 2009-06-09 12:57:21 -0700 | [diff] [blame] | 24 | android:id="@+id/label" |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 25 | android:layout_height="wrap_content" |
| 26 | android:layout_width="wrap_content" |
| 27 | android:text="@string/rename_folder_label" |
Fabrice Di Meglio | cc11f74 | 2012-12-18 16:25:49 -0800 | [diff] [blame] | 28 | android:gravity="start" |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 29 | android:textAppearance="?android:attr/textAppearanceMedium" /> |
| 30 | |
| 31 | <EditText |
| 32 | android:id="@+id/folder_name" |
| 33 | android:layout_height="wrap_content" |
Romain Guy | 8f19cdd | 2010-01-08 15:07:00 -0800 | [diff] [blame] | 34 | android:layout_width="match_parent" |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 35 | android:scrollHorizontally="true" |
| 36 | android:autoText="false" |
| 37 | android:capitalize="none" |
| 38 | android:gravity="fill_horizontal" |
Romain Guy | 68634c1 | 2009-07-15 15:19:44 -0700 | [diff] [blame] | 39 | android:maxLength="30" |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 40 | android:textAppearance="?android:attr/textAppearanceMedium" /> |
| 41 | |
| 42 | </LinearLayout> |