external_browser_activity.xml 1.38 KB
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".ui.activity.ExternalBrowserActivity">


    <com.hjq.bar.TitleBar
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:childPaddingVertical="@dimen/dp_5"
        app:rightIconHeight="@dimen/dp_20"
        app:title="@string/web_title" />

    <ProgressBar
        android:id="@+id/pb_browser_progress"
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="match_parent"
        android:layout_height="@dimen/dp_3"
        android:progressDrawable="@drawable/progress_gradient_bg"
        android:visibility="gone" />

    <com.studymachine.www.widget.StatusLayout
        android:id="@+id/hl_browser_hint"
        android:layout_width="match_parent"
        android:layout_height="match_parent">


            <com.studymachine.www.widget.BrowserView
                android:id="@+id/wv_browser_view"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />


    </com.studymachine.www.widget.StatusLayout>

</LinearLayout>