1234567891011121314151617181920 |
- <?xml version="1.0" encoding="utf-8"?>
- <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/super_gray_efeff2">
- <WebView
- android:id="@+id/super_web_view"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/super_gray_efeff2"/>
- <TextView
- android:id="@+id/super_progress_bar"
- android:layout_width="match_parent"
- android:layout_height="@dimen/super_dimen_2.00dp"
- android:background="@color/super_color_main"
- android:visibility="invisible"/>
- </FrameLayout>
|