AntennaPod/res/layout/feeditemlist_header.xml

56 lines
2.2 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2013-04-09 12:21:49 +02:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
2013-04-09 12:21:49 +02:00
android:background="?attr/borderless_button"
android:orientation="vertical" >
2013-04-09 12:21:49 +02:00
<RelativeLayout
android:layout_width="wrap_content"
2013-04-09 12:21:49 +02:00
android:layout_height="match_parent" >
2013-02-23 13:28:31 +01:00
2013-04-09 12:21:49 +02:00
<TextView
android:id="@+id/txtvHeaderTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
2013-04-09 12:47:39 +02:00
android:layout_marginBottom="32dp"
2013-04-09 12:21:49 +02:00
android:layout_marginLeft="28dp"
android:layout_marginRight="16dp"
2013-04-09 12:47:39 +02:00
android:layout_marginTop="32dp"
2013-04-09 12:21:49 +02:00
android:paddingLeft="8dp"
android:textAllCaps="true"
android:textColor="@color/dark_blue"
android:textSize="@dimen/text_size_large"
android:typeface="sans" />
2013-04-09 12:21:49 +02:00
<ImageButton
android:id="@+id/butAction"
android:contentDescription="@string/butAction_label"
2013-04-09 12:21:49 +02:00
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" />
2013-04-09 12:47:39 +02:00
<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" />
2013-04-09 12:21:49 +02:00
</RelativeLayout>
</LinearLayout>