2012-07-01 18:32:52 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/cover_fragment_root"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/txtvTitle"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentTop="true"
|
2012-07-14 20:26:47 +02:00
|
|
|
android:layout_marginTop="8dp"
|
2012-07-01 18:32:52 +02:00
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:textSize="18dp"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/txtvFeed"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_below="@+id/txtvTitle"
|
|
|
|
android:gravity="center_horizontal" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/cover_layout"
|
2012-08-11 17:34:17 +02:00
|
|
|
android:layout_width="0dp"
|
2012-07-18 14:38:51 +02:00
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_alignParentBottom="true"
|
2012-07-01 18:32:52 +02:00
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_below="@id/txtvFeed"
|
2012-07-18 14:38:51 +02:00
|
|
|
android:gravity="center"
|
2012-07-01 18:32:52 +02:00
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/imgvCover"
|
2012-08-26 22:12:09 +02:00
|
|
|
android:layout_marginLeft="50dp"
|
|
|
|
android:layout_marginRight="50dp"
|
2012-08-11 17:34:17 +02:00
|
|
|
android:layout_marginTop="8dp"
|
2012-08-15 17:12:57 +02:00
|
|
|
android:layout_marginBottom="4dp"
|
2012-08-11 17:34:17 +02:00
|
|
|
android:layout_width="match_parent"
|
2012-07-21 19:35:07 +02:00
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_weight="1"
|
2012-08-11 17:34:17 +02:00
|
|
|
android:adjustViewBounds="true"
|
2012-08-26 22:12:09 +02:00
|
|
|
android:scaleType="centerInside" />
|
2012-07-21 19:35:07 +02:00
|
|
|
|
2012-07-01 18:32:52 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</RelativeLayout>
|