diff options
author | Tom Hennen <tom.hennen@gmail.com> | 2015-09-05 14:22:28 -0400 |
---|---|---|
committer | Tom Hennen <tom.hennen@gmail.com> | 2015-09-07 21:25:18 -0400 |
commit | 1d38db32d5cbb1a86276600bc06f660f9c521ec9 (patch) | |
tree | 3c569fa1c868ebed87b482e1cd6b6d796bdc3620 /app/src/main/res | |
parent | 98a0b46bed65b6489923be7364bb9894901ae6fc (diff) | |
download | AntennaPod-1d38db32d5cbb1a86276600bc06f660f9c521ec9.zip |
episodes fragment with tabs. layout of item info is messed up for some reason.
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/episodes_fragment.xml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/app/src/main/res/layout/episodes_fragment.xml b/app/src/main/res/layout/episodes_fragment.xml new file mode 100644 index 000000000..70b288cdf --- /dev/null +++ b/app/src/main/res/layout/episodes_fragment.xml @@ -0,0 +1,33 @@ +<android.support.v4.app.FragmentTabHost + xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@android:id/tabhost" + android:layout_width="match_parent" + android:layout_height="match_parent"> + + <LinearLayout + android:orientation="vertical" + android:layout_width="match_parent" + android:layout_height="match_parent"> + + <TabWidget + android:id="@android:id/tabs" + + android:orientation="horizontal" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_weight="0"/> + + <FrameLayout + android:id="@android:id/tabcontent" + android:layout_width="0dp" + android:layout_height="0dp" + android:layout_weight="0"/> + + <FrameLayout + android:id="@+id/realtabcontent" + android:layout_width="match_parent" + android:layout_height="0dp" + android:layout_weight="1"/> + + </LinearLayout> +</android.support.v4.app.FragmentTabHost>
\ No newline at end of file |