AntennaPod/res/layout/feedlist_item.xml

35 lines
1.0 KiB
XML
Raw Normal View History

2011-12-23 19:22:06 +01:00
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:id="@+id/imgvFeedimage"
2012-04-11 18:14:43 +02:00
android:layout_height="60dip"
android:layout_width="60dip"
android:layout_marginBottom="1dip"
2011-12-23 19:22:06 +01:00
android:cropToPadding="true"
android:layout_alignParentLeft="true"
/>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent"
android:layout_width="wrap_content"
2012-04-11 18:14:43 +02:00
android:layout_toRightOf="@id/imgvFeedimage">
2011-12-23 19:22:06 +01:00
<TextView
android:id="@+id/txtvFeedname"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<TextView
android:id="@+id/txtvNewEpisodes"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
2012-04-11 18:14:43 +02:00
</RelativeLayout>