aboutsummaryrefslogtreecommitdiffstats
path: root/main/res/layout/cachelist_spinneritem.xml
blob: fce9b88f324d1ecbe0a02231f98f33df1573822d (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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    style="?attr/spinnerDropDownItemStyle"
    android:layout_width="match_parent"
    android:layout_height="?attr/dropdownListPreferredItemHeight"
    android:layout_gravity="left|center_vertical"
    android:minHeight="?attr/dropdownListPreferredItemHeight"
    android:orientation="vertical"
    tools:context=".CacheListSpinnerAdapter" >

    <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>