blob: 58e070e684ce853302b718bed36125df0a19aebe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="?attr/dropdownListPreferredItemHeight"
android:minHeight="?attr/dropdownListPreferredItemHeight"
android:layout_gravity="left|center_vertical"
style="?attr/spinnerDropDownItemStyle"
>
<TextView
android:id="@android:id/text1"
tools:text="This is the title"
android:singleLine="true"
android:ellipsize="marquee"
android:layout_width="match_parent"
style="?attr/titleTextStyle"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:ellipsize="marquee"
style="?attr/subtitleTextStyle"
tools:text="This is the subtitle"
android:id="@android:id/text2" />
</LinearLayout>
|