summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/feeditem_fragment.xml
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2014-12-17 21:58:43 +0100
committerdaniel oeh <daniel.oeh@gmail.com>2014-12-19 19:47:38 +0100
commitab772e55f5dea02c9f69cb876cd7b3aa0c02b2ed (patch)
tree179f7cb2f7c5d68961e46c5ca7e768d953374553 /app/src/main/res/layout/feeditem_fragment.xml
parent120db7ae7e7edf0716cbdebfac024f96a0888d40 (diff)
downloadAntennaPod-ab772e55f5dea02c9f69cb876cd7b3aa0c02b2ed.zip
Replaced FeedItemDialog with ItemFragment
Diffstat (limited to 'app/src/main/res/layout/feeditem_fragment.xml')
-rw-r--r--app/src/main/res/layout/feeditem_fragment.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/app/src/main/res/layout/feeditem_fragment.xml b/app/src/main/res/layout/feeditem_fragment.xml
new file mode 100644
index 000000000..5e1b580d2
--- /dev/null
+++ b/app/src/main/res/layout/feeditem_fragment.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="utf-8"?>
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/content_root"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
+
+
+ <WebView
+ android:id="@+id/webvDescription"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:foreground="?android:windowContentOverlay" />
+
+ <FrameLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
+
+ <ProgressBar
+ android:id="@+id/progbarLoading"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center"
+ android:indeterminate="true" />
+ </FrameLayout>
+</FrameLayout> \ No newline at end of file