33 lines
1.3 KiB
XML
33 lines
1.3 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||
|
|
|
||
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:background="@color/color_transparent">
|
||
|
|
|
||
|
|
<WebView
|
||
|
|
android:id="@+id/web_view"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="@dimen/dp_600"
|
||
|
|
android:background="@color/transparent"
|
||
|
|
android:hardwareAccelerated="true"
|
||
|
|
app:layout_constraintTop_toTopOf="parent"
|
||
|
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
|
/>
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/iv_close"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginTop="@dimen/dp_12"
|
||
|
|
android:src="@mipmap/index_close_youth"
|
||
|
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
|
app:layout_constraintTop_toBottomOf="@+id/web_view"
|
||
|
|
android:visibility="visible"/>
|
||
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||
|
|
|
||
|
|
</layout>
|