Advertisement
Guest User

Untitled

a guest
Apr 6th, 2020
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.98 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:app="http://schemas.android.com/apk/res-auto"
  4.    android:id="@+id/fl_topview"
  5.    android:layout_width="match_parent"
  6.    android:layout_height="match_parent"
  7.    android:background="@android:color/transparent"
  8.    android:orientation="vertical">
  9.  
  10.     <FrameLayout
  11.        android:id="@+id/relay_positionlist"
  12.        android:layout_width="match_parent"
  13.        android:layout_height="match_parent">
  14.  
  15.         <com.scwang.smartrefresh.layout.SmartRefreshLayout
  16.            android:id="@+id/refreshLayout"
  17.            android:layout_width="match_parent"
  18.            android:layout_height="match_parent"
  19.            app:srlAccentColor="@color/colorPrimary"
  20.            app:srlEnablePreviewInEditMode="true">
  21.  
  22.             <androidx.core.widget.NestedScrollView
  23.                android:id="@+id/nested_scroll_view"
  24.                android:layout_width="match_parent"
  25.                android:layout_height="wrap_content"
  26.                android:layout_gravity="fill_vertical"
  27.                android:fillViewport="false"
  28.                android:overScrollMode="never"
  29.                android:scrollbars="none"
  30.                app:layout_behavior="@string/appbar_scrolling_view_behavior">
  31.  
  32.                 <FrameLayout
  33.                    android:id="@+id/frame_layout"
  34.                    android:layout_width="match_parent"
  35.                    android:layout_height="match_parent"
  36.                    app:layout_behavior="@string/appbar_scrolling_view_behavior">
  37.  
  38.  
  39.                     <WebView
  40.                        android:id="@+id/webViewNotification"
  41.                        android:layout_width="match_parent"
  42.                        android:layout_height="match_parent" />
  43.                 </FrameLayout>
  44.             </androidx.core.widget.NestedScrollView>
  45.  
  46.  
  47.         </com.scwang.smartrefresh.layout.SmartRefreshLayout>
  48.  
  49.     </FrameLayout>
  50.  
  51. </FrameLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement