blob: ecc730f59320c029c031c3a145d3637e969b97d5 [file] [log] [blame]
Leon Scroggins162f8352010-10-18 15:02:44 -04001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2010 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<!-- Keep in sync with folder_list_item.xml -->
17<LinearLayout
18 xmlns:android="http://schemas.android.com/apk/res/android"
19 android:layout_width="match_parent"
20 android:layout_height="wrap_content"
21 android:orientation="horizontal">
22 <ImageView
23 android:id="@+id/icon1"
24 style="@style/HoloIcon"
25 android:layout_width="wrap_content"
26 android:layout_height="wrap_content"
27 android:gravity="center_vertical"
28 android:minHeight="?android:attr/listPreferredItemHeight"
Leon Scroggins905250c2010-12-17 15:25:33 -050029 android:src="@drawable/ic_folder_bookmark_widget_holo_dark" />
Leon Scroggins0e3a7b82011-01-11 19:08:03 -050030 <LinearLayout
31 android:layout_width="match_parent"
32 android:layout_height="wrap_content"
33 android:background="@*android:drawable/edit_text_holo_dark"
34 android:gravity="center_vertical"
35 android:paddingBottom="5dip"
36 android:orientation="horizontal">
Leon Scroggins162f8352010-10-18 15:02:44 -040037 <EditText
38 android:id="@+id/folder_namer"
Leon Scroggins0e3a7b82011-01-11 19:08:03 -050039 android:layout_width="0dip"
Leon Scroggins162f8352010-10-18 15:02:44 -040040 android:layout_height="wrap_content"
Leon Scroggins0e3a7b82011-01-11 19:08:03 -050041 android:layout_weight="1"
Leon Scroggins162f8352010-10-18 15:02:44 -040042 android:textAppearance="?android:attr/textAppearanceMedium"
Leon Scroggins0e3a7b82011-01-11 19:08:03 -050043 android:background="@null"
Leon Scroggins162f8352010-10-18 15:02:44 -040044 android:gravity="center_vertical"
45 android:paddingLeft="6dip"
Leon Scroggins0e3a7b82011-01-11 19:08:03 -050046 />
47 <ImageView
48 android:id="@+id/close"
49 android:layout_width="wrap_content"
50 android:layout_height="wrap_content"
51 android:gravity="center_vertical"
52 android:src="@drawable/ic_tab_close"
53 />
54 </LinearLayout>
Leon Scroggins162f8352010-10-18 15:02:44 -040055</LinearLayout>