blob: 8d69ba9962876e20e3fdfb71bdd2fe978423c39f [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. -->
Mindy Pereirac283c182012-03-08 16:37:41 -080022<RelativeLayout 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"
Mindy Pereirac283c182012-03-08 16:37:41 -080025 android:layout_height="?android:attr/listPreferredItemHeight">
Mindy Pereirae234cb12012-02-07 12:05:50 -080026
27 <!-- Note: the checkbox is not focusable because the parent list item itself handles
28 the toggling -->
Mindy Pereira41b1c8d2012-02-07 14:12:16 -080029 <RadioButton android:id="@+id/checkbox"
Mindy Pereirac283c182012-03-08 16:37:41 -080030 style="@style/FolderSelectionItemStyle"/>
Mindy Pereirae234cb12012-02-07 12:05:50 -080031
32 <View
33 android:id="@+id/color_block"
Mindy Pereirac283c182012-03-08 16:37:41 -080034 style="@style/FolderColorBoxStyle" />
Mindy Pereirae234cb12012-02-07 12:05:50 -080035
Mindy Pereirac283c182012-03-08 16:37:41 -080036</RelativeLayout>