summaryrefslogtreecommitdiff
path: root/res/layout/feedinfo.xml
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-07-05 00:10:12 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-07-05 00:10:12 +0200
commit764ef2b1d68dbd6c8bc2ca34283dfdf6cfb8ec6e (patch)
tree3d2d29177207d20b0ab8860106ce76368832ee72 /res/layout/feedinfo.xml
parent68e5d90b9cd13a2e970718218b5e8b8e98e7aaf5 (diff)
downloadAntennaPod-764ef2b1d68dbd6c8bc2ca34283dfdf6cfb8ec6e.zip
Added 'author' and 'language' attributes to Feed
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>