summaryrefslogtreecommitdiff
path: root/res/layout/cover_fragment.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/cover_fragment.xml')
-rw-r--r--res/layout/cover_fragment.xml48
1 files changed, 48 insertions, 0 deletions
diff --git a/res/layout/cover_fragment.xml b/res/layout/cover_fragment.xml
new file mode 100644
index 000000000..c7f60f2da
--- /dev/null
+++ b/res/layout/cover_fragment.xml
@@ -0,0 +1,48 @@
+<?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"
+ android:layout_marginTop="20dp"
+ 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"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentLeft="true"
+ android:layout_alignParentRight="true"
+ android:layout_alignParentTop="false"
+ android:layout_below="@id/txtvFeed"
+ android:layout_gravity="center"
+ android:layout_weight="1"
+ android:orientation="vertical" >
+
+ <ImageView
+ android:id="@+id/imgvCover"
+ android:layout_width="200dp"
+ android:layout_height="200dp"
+ android:layout_gravity="center"
+ android:gravity="center" />
+
+ </LinearLayout>
+
+</RelativeLayout> \ No newline at end of file