aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/activity_web_overlay.xml
blob: fe223811fdc9452d5668ca3cd52b5d51fbed3d89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/overlay_main_content"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:context=".activities.WebOverlayActivity">

    <android.support.v7.widget.Toolbar
        android:id="@+id/overlay_toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        android:theme="@style/AppTheme.AppBarOverlay"
        app:layout_scrollFlags="scroll|enterAlways"
        app:popupTheme="@style/AppTheme.PopupOverlay" />

    <include
        layout="@layout/view_content_web"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginTop="?attr/actionBarSize" />

    <!--<com.pitchedapps.frost.views.FrostRefreshView-->
    <!--android:id="@+id/overlay_frost_refresh_view"-->
    <!--android:layout_width="match_parent"-->
    <!--android:layout_height="match_parent"-->
    <!--android:layout_marginTop="?attr/actionBarSize">-->

    <!--<com.pitchedapps.frost.views.FrostWebView-->
    <!--android:id="@+id/overlay_frost_web_view"-->
    <!--android:layout_width="match_parent"-->
    <!--android:layout_height="match_parent" />-->

    <!--</com.pitchedapps.frost.views.FrostRefreshView>-->

</android.support.design.widget.CoordinatorLayout>