123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout 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:background="@color/white"
- tools:context=".ui.still.MsdsScreenActivity">
- <RelativeLayout
- android:id="@+id/rel1"
- android:layout_width="match_parent"
- android:layout_height="45dp"
- android:background="@color/purple_ff54a2ea">
- <TextView
- android:id="@+id/name"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_marginLeft="10dp"
- android:text="名称名称"
- android:textColor="@color/white"
- android:textSize="22sp" />
- <Button
- android:id="@+id/closeScreen"
- android:layout_width="wrap_content"
- android:layout_height="35dp"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:layout_marginRight="10dp"
- android:background="@drawable/bg_tui_chu"
- android:text="退出全屏"
- android:textColor="@color/white" />
- </RelativeLayout>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_below="@+id/rel1">
- <com.tencent.smtt.sdk.WebView
- android:id="@+id/webView"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginLeft="120dp"
- android:layout_marginRight="120dp"
- android:layout_marginBottom="34dp"
- android:background="@color/purple_ffdbdbdb" />
- <ProgressBar
- android:id="@+id/progressbar"
- style="@android:style/Widget.ProgressBar.Horizontal"
- android:layout_width="0dp"
- android:layout_height="2dp"
- android:progress="0"
- android:progressDrawable="@drawable/progressbar" />
- <FrameLayout
- android:id="@+id/videoFullScreen"
- android:layout_width="0dp"
- android:layout_height="0dp"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent" />
- </RelativeLayout>
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_alignParentBottom="true"
- android:layout_marginRight="15dp"
- android:layout_marginBottom="34dp"
- android:gravity="center"
- android:orientation="vertical">
- <ImageView
- android:id="@+id/imgSign"
- android:layout_width="70dp"
- android:layout_height="70dp" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="4dp"
- android:text="微信扫描"
- android:textColor="@color/black" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="4dp"
- android:text="二维码查看"
- android:textColor="@color/black" />
- </LinearLayout>
- </RelativeLayout>
|