AntennaPod/res/layout/simplechapter_item.xml

25 lines
860 B
XML
Raw Normal View History

2012-07-23 00:28:01 +02:00
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
2012-07-23 01:30:57 +02:00
android:layout_height="48dp" >
2012-07-23 00:28:01 +02:00
<TextView
android:id="@+id/txtvStart"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
2012-07-23 01:30:57 +02:00
android:layout_margin="8dp"
2012-07-23 00:28:01 +02:00
android:textColor="@color/gray" />
2012-07-23 01:30:57 +02:00
<TextView
android:id="@+id/txtvTitle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_margin="8dp"
android:layout_toLeftOf="@id/txtvStart"
android:textStyle="bold" />
2012-07-23 00:28:01 +02:00
</RelativeLayout>