aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/view_content_base_web.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/view_content_base_web.xml')
-rw-r--r--app/src/main/res/layout/view_content_base_web.xml31
1 files changed, 31 insertions, 0 deletions
diff --git a/app/src/main/res/layout/view_content_base_web.xml b/app/src/main/res/layout/view_content_base_web.xml
new file mode 100644
index 00000000..de10a82a
--- /dev/null
+++ b/app/src/main/res/layout/view_content_base_web.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="utf-8"?>
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:app="http://schemas.android.com/apk/res-auto"
+ android:id="@id/content_frame"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ app:layout_behavior="@string/appbar_scrolling_view_behavior">
+
+ <android.support.v4.widget.SwipeRefreshLayout
+ android:id="@id/content_refresh"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content">
+
+ <com.pitchedapps.frost.views.FrostWebView
+ android:id="@id/content_core"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:focusable="true"
+ android:focusableInTouchMode="true"
+ app:layout_behavior="@string/appbar_scrolling_view_behavior" />
+
+ </android.support.v4.widget.SwipeRefreshLayout>
+
+ <ProgressBar
+ android:id="@id/content_progress"
+ style="@style/FrostProgressBar"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_gravity="top" />
+
+</FrameLayout> \ No newline at end of file