blob: 9ccebe7d6b4ffcfd36c86889efb40e9cb1d9d8d1 [file] [log] [blame]
Amith Yamasanie2ac72b2010-09-23 15:41:50 -07001<?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
17<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
Jean Chalard99e509c2012-05-09 17:47:17 +090018 android:layout_width="match_parent"
19 android:layout_height="wrap_content"
20 android:minHeight="?android:attr/listPreferredItemHeight"
21 android:gravity="center_vertical"
Fabrice Di Meglio79d8e802012-07-19 19:25:50 -070022 android:paddingEnd="?android:attr/scrollbarSize"
Jean Chalard99e509c2012-05-09 17:47:17 +090023 android:background="?android:attr/selectableItemBackground" >
Amith Yamasanie2ac72b2010-09-23 15:41:50 -070024
Jean Chalard99e509c2012-05-09 17:47:17 +090025 <RelativeLayout android:layout_width="wrap_content"
26 android:layout_height="wrap_content"
Fabrice Di Meglio79d8e802012-07-19 19:25:50 -070027 android:layout_marginStart="15dip"
28 android:layout_marginEnd="6dip"
Jean Chalard99e509c2012-05-09 17:47:17 +090029 android:layout_marginTop="6dip"
30 android:layout_marginBottom="6dip"
31 android:layout_weight="1">
Amith Yamasanie2ac72b2010-09-23 15:41:50 -070032
Adam Lesinski701af872016-08-16 15:59:14 -070033 <TextView android:id="@android:id/text1"
Jean Chalard99e509c2012-05-09 17:47:17 +090034 android:layout_width="wrap_content"
35 android:layout_height="wrap_content"
36 android:singleLine="true"
37 android:textAppearance="?android:attr/textAppearanceMedium"
38 android:ellipsize="marquee"
39 android:fadingEdge="horizontal" />
Amith Yamasanie2ac72b2010-09-23 15:41:50 -070040
Adam Lesinski701af872016-08-16 15:59:14 -070041 <TextView android:id="@android:id/text2"
Jean Chalard99e509c2012-05-09 17:47:17 +090042 android:layout_width="wrap_content"
43 android:layout_height="wrap_content"
44 android:layout_below="@android:id/text1"
Fabrice Di Meglio79d8e802012-07-19 19:25:50 -070045 android:layout_alignStart="@android:id/text1"
Jean Chalard99e509c2012-05-09 17:47:17 +090046 android:textAppearance="?android:attr/textAppearanceSmall"
47 android:textColor="?android:attr/textColorSecondary"
48 android:maxLines="1" />
49
50 </RelativeLayout>
51
Amith Yamasanie2ac72b2010-09-23 15:41:50 -070052</LinearLayout>