<?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:orientation="vertical">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical">
|
|
<include layout="@layout/item_status_bar" />
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="48dp"
|
android:background="@color/white"
|
android:gravity="center_vertical"
|
android:orientation="horizontal">
|
|
<TextView
|
android:id="@+id/tv_top_bar_left"
|
android:layout_width="30dp"
|
android:layout_height="30dp"
|
android:layout_gravity="center_vertical"
|
android:drawableLeft="@drawable/ic_back"
|
android:drawablePadding="3dp"
|
android:gravity="center"
|
android:padding="8dp"
|
android:textColor="@color/text_black_1" />
|
|
<TextView
|
android:id="@+id/tv_top_bar_left2"
|
android:layout_width="30dp"
|
android:layout_height="30dp"
|
android:layout_gravity="center"
|
android:layout_marginLeft="6dp"
|
android:gravity="center"
|
android:paddingTop="8dp"
|
android:paddingRight="8dp"
|
android:paddingBottom="8dp"
|
android:textColor="@color/text_black_1"
|
android:visibility="visible" />
|
|
|
<Button
|
android:id="@+id/tv_top_bar_middle1"
|
style="?android:attr/borderlessButtonStyle"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center"
|
android:gravity="center"
|
android:layout_weight="1"
|
android:background="@color/white"
|
android:ellipsize="end"
|
android:maxLines="1"
|
android:textColor="@color/text_black_1"
|
android:textSize="18sp"
|
android:visibility="gone" />
|
|
|
<ImageView
|
android:id="@+id/iv_top_bar_right"
|
android:layout_width="66dp"
|
android:layout_height="wrap_content"
|
android:padding="5dp"
|
android:src="@drawable/ic_des_top_right"
|
android:visibility="visible" />
|
</LinearLayout>
|
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:background="@color/trends_goods_bg" />
|
|
<ProgressBar
|
android:id="@+id/myProgressBar"
|
style="?android:attr/progressBarStyleHorizontal"
|
android:layout_width="match_parent"
|
android:layout_height="2dp"
|
android:background="@color/main_text_color" />
|
|
<FrameLayout
|
android:id="@+id/fl_webview"
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
android:layout_weight="1"></FrameLayout>
|
|
</LinearLayout>
|
|
<View
|
android:id="@+id/v_cover_web"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:alpha="0.1"
|
android:background="@color/black"
|
android:visibility="gone" />
|
<!--全屏布局-->
|
<FrameLayout
|
android:id="@+id/fl_full_video"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:visibility="gone" />
|
</FrameLayout>
|