38 lines
1.2 KiB
XML
38 lines
1.2 KiB
XML
<?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"
|
|
android:layout_width="60dip"
|
|
android:layout_height="60dip"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_marginBottom="1dip"
|
|
android:cropToPadding="true" />
|
|
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="fill_parent"
|
|
android:layout_toRightOf="@id/imgvFeedimage" >
|
|
|
|
<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"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/txtvLastUpdate"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content" />
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout> |