summaryrefslogtreecommitdiff
path: root/res/layout/feeditemlist_header.xml
blob: 31ccb7e9605e257d0c7524c238d14c0da63fac52 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="?attr/borderless_button"
    android:orientation="vertical" >

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="match_parent" >

        <TextView
            android:id="@+id/txtvHeaderTitle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_centerVertical="true"
            android:layout_marginBottom="32dp"
            android:layout_marginLeft="28dp"
            android:layout_marginRight="16dp"
            android:layout_marginTop="32dp"
            android:paddingLeft="8dp"
            android:textAllCaps="true"
            android:textColor="@color/dark_blue"
            android:textSize="@dimen/text_size_large"
            android:typeface="sans" />

        <ImageButton
            android:id="@+id/butAction"
            android:layout_width="48dp"
            android:layout_height="match_parent"
            android:layout_alignParentBottom="true"
            android:layout_alignParentRight="true"
            android:background="?attr/borderless_button"
            android:clickable="false"
            android:focusable="false"
            android:focusableInTouchMode="false"
            android:paddingLeft="24dp"
            android:paddingRight="8dp"
            android:paddingTop="16dp"
            android:scaleType="fitEnd"
            android:src="?attr/spinner_button" />

        <TextView
            android:id="@+id/txtvNumItems"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_centerVertical="true"
            android:layout_toLeftOf="@id/butAction"
            android:textColor="@color/dark_blue"
            android:textSize="@dimen/text_size_large"
            android:textStyle="normal" />
    </RelativeLayout>

</LinearLayout>