diff options
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/swipe_webview.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/src/main/res/layout/swipe_webview.xml b/app/src/main/res/layout/swipe_webview.xml index 87df67b2..4873b6cc 100644 --- a/app/src/main/res/layout/swipe_webview.xml +++ b/app/src/main/res/layout/swipe_webview.xml @@ -1,15 +1,15 @@ <?xml version="1.0" encoding="utf-8"?> -<com.pitchedapps.frost.views.SwipeRefreshBase xmlns:android="http://schemas.android.com/apk/res/android" +<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/swipe_refresh" android:layout_width="match_parent" android:layout_height="match_parent"> - <com.pitchedapps.frost.views.FrostWebView + <com.pitchedapps.frost.web.FrostWebView android:id="@+id/frost_webview" android:layout_width="match_parent" android:layout_height="match_parent" android:focusable="true" android:focusableInTouchMode="true" app:layout_behavior="@string/appbar_scrolling_view_behavior" /> -</com.pitchedapps.frost.views.SwipeRefreshBase> +</android.support.v4.widget.SwipeRefreshLayout> |