summaryrefslogtreecommitdiff
path: root/res/layout/feedinfo.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/feedinfo.xml')
-rw-r--r--res/layout/feedinfo.xml55
1 files changed, 53 insertions, 2 deletions
diff --git a/res/layout/feedinfo.xml b/res/layout/feedinfo.xml
index bdc585e58..7ff359f2c 100644
--- a/res/layout/feedinfo.xml
+++ b/res/layout/feedinfo.xml
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:app="http://schemas.android.com/apk/res/de.podfetcher"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
@@ -44,12 +45,62 @@
<LinearLayout
android:layout_width="match_parent"
- android:layout_height="wrap_content" >
+ android:layout_height="wrap_content"
+ android:orientation="vertical" >
+
+ <android.support.v7.widget.GridLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:grid="http://schemas.android.com/apk/res-auto"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_margin="8dp"
+ app:columnCount="2"
+ app:orientation="horizontal"
+ grid:useDefaultMargins="true" >
+
+ <TextView
+ android:id="@+id/lblAuthor"
+ android:textStyle="bold"
+ app:layout_row="0"
+ android:text="@string/author_label" />
+
+ <TextView
+ android:id="@+id/lblLanguage"
+ android:textStyle="bold"
+ app:layout_column="0"
+ app:layout_row="2"
+ android:text="@string/language_label" />
+
+ <TextView
+ android:id="@+id/txtvLanguage"
+ android:layout_width="wrap_content"
+ app:layout_column="1"
+ app:layout_gravity="fill_vertical"
+ app:layout_row="2"
+ android:text="deutsch" />
+
+ <TextView
+ android:id="@+id/txtvAuthor"
+ android:layout_width="210dp"
+ app:layout_column="1"
+ app:layout_gravity="fill_vertical"
+ app:layout_row="0"
+ app:layout_rowSpan="2"
+ android:text="metaebene personal media - Tim pritlove" />
+
+ <android.support.v7.widget.Space
+ android:id="@+id/space1"
+ android:layout_height="16dp"
+ android:layout_width="50dp"
+ app:layout_column="0"
+ app:layout_row="1" />
+ </android.support.v7.widget.GridLayout>
<TextView
android:id="@+id/txtvDescription"
android:layout_width="match_parent"
- android:layout_height="wrap_content" />
+ android:layout_height="wrap_content"
+ android:layout_margin="8dp" />
</LinearLayout>
</ScrollView>