activity_web_detail.xml 1.3 KB
Newer Older
S
shuyu 已提交
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <android.support.v4.widget.NestedScrollView
        android:id="@+id/web_top_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            <View
                android:layout_width="match_parent"
                android:layout_height="200dp" />

            <com.example.gsyvideoplayer.view.ScrollWebView
                android:id="@+id/scroll_webView"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />
        </LinearLayout>
    </android.support.v4.widget.NestedScrollView>

    <RelativeLayout
        android:id="@+id/web_top_layout_video"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

33
        <com.shuyu.gsyvideoplayer.video.NormalGSYVideoPlayer
S
shuyu 已提交
34 35 36 37 38
            android:id="@+id/web_player"
            android:layout_width="match_parent"
            android:layout_height="200dp" />
    </RelativeLayout>
</RelativeLayout>