blob: 0567bbc23b35b9fb2d84984fc21da474bfe16011 [file] [log] [blame]
Amith Yamasanifc8a3832013-04-23 11:44:59 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2013 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<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
18 android:layout_width="match_parent"
Amith Yamasanif162efe2013-04-29 10:43:05 -070019 android:layout_height="wrap_content"
20 android:minHeight="?android:attr/listPreferredItemHeight"
Amith Yamasanif3db0212014-12-02 17:21:23 -080021 android:paddingStart="?android:attr/listPreferredItemPaddingStart"
22 android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
Amith Yamasanifc8a3832013-04-23 11:44:59 -070023 android:paddingTop="8dip"
24 android:paddingBottom="8dip">
25 <TextView
26 android:id="@+id/title"
27 android:layout_width="wrap_content"
28 android:layout_height="wrap_content"
29 android:singleLine="true"
30 android:textAppearance="?android:attr/textAppearanceMedium"
31 android:ellipsize="marquee"
32 android:fadingEdge="horizontal"/>
33 <TextView
34 android:id="@+id/summary"
35 android:layout_width="wrap_content"
36 android:layout_height="wrap_content"
37 android:layout_below="@id/title"
38 android:layout_alignStart="@id/title"
39 android:textAppearance="?android:attr/textAppearanceSmall"
40 android:textColor="?android:attr/textColorSecondary"
41 android:maxLines="4" />
42</RelativeLayout>