Added 'author' and 'language' attributes to Feed

This commit is contained in:
daniel oeh
2012-07-05 00:10:12 +02:00
parent 68e5d90b9c
commit 764ef2b1d6
9 changed files with 111 additions and 7 deletions

View File

@ -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>

View File

@ -71,5 +71,7 @@
<string name="cover_label">Cover</string>
<string name="playback_error_server_died">Server died</string>
<string name="playback_error_unknown">Unknown Error</string>
<string name="author_label">Author</string>
<string name="language_label">Language</string>
</resources>