blob: 5ab61894385bb96f9e098baaeb3f559c02f2fe3a [file] [log] [blame]
Paul Soulos2d48b5a2014-05-29 13:56:25 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2014 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"
Paul Soulos6b632892014-07-28 14:05:11 -070018 style="@style/SelectableItem"
Paul Soulos2d48b5a2014-05-29 13:56:25 -070019 android:layout_width="match_parent"
20 android:layout_height="wrap_content"
Paul Soulos6b632892014-07-28 14:05:11 -070021 android:orientation="vertical" >
Paul Soulos2d48b5a2014-05-29 13:56:25 -070022
23 <View
24 android:layout_width="match_parent"
Brian Attwelldaa20582014-11-25 20:45:44 -080025 android:layout_height="@dimen/divider_line_height"
26 android:background="@color/divider_line_color_light" />
Paul Soulos2d48b5a2014-05-29 13:56:25 -070027
Paul Soulos6b632892014-07-28 14:05:11 -070028 <LinearLayout
29 android:layout_width="match_parent"
Paul Soulos2d48b5a2014-05-29 13:56:25 -070030 android:layout_height="wrap_content"
Paul Soulos6b632892014-07-28 14:05:11 -070031 android:orientation="horizontal" >
32
Paul Soulosc205cf12014-08-04 14:35:56 -070033 <ImageView
34 android:id="@+id/arrow"
35 android:src="@drawable/expanding_entry_card_expand_white_24"
36 android:layout_width="wrap_content"
37 android:layout_height="wrap_content"
38 android:layout_marginStart="@dimen/expanding_entry_card_item_padding_start"
39 android:paddingBottom="@dimen/expanding_entry_card_button_padding_vertical"
yaoludfc138f2016-09-13 10:01:49 -070040 android:paddingTop="@dimen/expanding_entry_card_button_padding_vertical"/>
Paul Soulosc205cf12014-08-04 14:35:56 -070041
Paul Soulos6b632892014-07-28 14:05:11 -070042 <TextView
43 android:id="@+id/text"
44 android:layout_width="wrap_content"
45 android:layout_height="wrap_content"
Paul Soulosc205cf12014-08-04 14:35:56 -070046 android:paddingStart="@dimen/expanding_entry_card_item_image_spacing"
Paul Soulos6b632892014-07-28 14:05:11 -070047 android:gravity="center_vertical"
Paul Soulos6b632892014-07-28 14:05:11 -070048 android:paddingBottom="@dimen/expanding_entry_card_button_padding_vertical"
Paul Soulos6b632892014-07-28 14:05:11 -070049 android:paddingTop="@dimen/expanding_entry_card_button_padding_vertical"
Paul Soulosac9b3162014-07-30 16:45:01 -070050 android:textColor="@color/expanding_entry_card_button_text_color"
51 android:textSize="@dimen/expanding_entry_card_title_text_size" />
Paul Soulos6b632892014-07-28 14:05:11 -070052 </LinearLayout>
Paul Soulos2d48b5a2014-05-29 13:56:25 -070053
54</LinearLayout>