blob: ebb4adb9df52626ac55542ab42fa4abe8bbe4285 [file] [log] [blame]
Mindy Pereirae234cb12012-02-07 12:05:50 -08001<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
Mindy Pereira41b1c8d2012-02-07 14:12:16 -08004 * Copyright (c) 2010 Google Inc.
Mindy Pereirae234cb12012-02-07 12:05:50 -08005 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18-->
19
Mindy Pereira30fd47b2012-03-09 09:24:00 -080020<!-- Describes an individual toggleable folder entry to be displayed in a list of folders in
21 a folder selection UI. -->
Rohan Shahcc2e1ee2014-08-20 14:50:38 -070022<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
Mindy Pereira30fd47b2012-03-09 09:24:00 -080023 android:id="@+id/folders"
Mindy Pereirae234cb12012-02-07 12:05:50 -080024 android:layout_width="match_parent"
Rohan Shahcc2e1ee2014-08-20 14:50:38 -070025 android:layout_height="@dimen/single_folder_list_item_height"
26 android:layout_gravity="center_vertical"
Tony Mantler908816d2014-08-14 15:06:24 -070027 android:minHeight="?android:attr/listPreferredItemHeight">
Mindy Pereirae234cb12012-02-07 12:05:50 -080028
29 <!-- Note: the checkbox is not focusable because the parent list item itself handles
30 the toggling -->
Rohan Shahcc2e1ee2014-08-20 14:50:38 -070031 <ImageView
32 android:id="@+id/folder_icon"
33 android:layout_width="24dp"
34 android:layout_height="24dp"
35 android:layout_gravity="center_vertical"
36 style="@style/SingleFolderListIconStyle" />
37
mindypa7e15452012-09-18 14:22:11 -070038 <TextView android:id="@+id/folder_name"
Rohan Shahcc2e1ee2014-08-20 14:50:38 -070039 android:layout_width="0dp"
40 android:layout_weight="1"
41 style="@style/SingleFolderSelectionItemStyle" />
Mindy Pereirae234cb12012-02-07 12:05:50 -080042
Rohan Shahcc2e1ee2014-08-20 14:50:38 -070043</LinearLayout>