92 lines
4.1 KiB
XML
92 lines
4.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:background="@android:color/white"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1">
|
|
<TextView
|
|
android:layout_gravity="center"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Loading..."
|
|
android:alpha="0.7"/>
|
|
<FrameLayout
|
|
android:id="@+id/o"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
<androidx.cardview.widget.CardView
|
|
android:layout_gravity="top|right"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginRight="8dp"
|
|
app:cardBackgroundColor="#00000000"
|
|
app:cardCornerRadius="2dp"
|
|
app:cardElevation="0dp"
|
|
app:contentPadding="0dp">
|
|
<TextView
|
|
android:textSize="12sp"
|
|
android:textColor="@android:color/white"
|
|
android:gravity="center"
|
|
android:id="@+id/p"
|
|
android:background="#48000000"
|
|
android:paddingLeft="12dp"
|
|
android:paddingTop="4dp"
|
|
android:paddingRight="12dp"
|
|
android:paddingBottom="4dp"
|
|
android:visibility="visible"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:foreground="?attr/a5g"
|
|
android:text="SKIP"/>
|
|
</androidx.cardview.widget.CardView>
|
|
</FrameLayout>
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<LinearLayout
|
|
android:gravity="bottom"
|
|
android:orientation="horizontal"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="24dp"
|
|
android:layout_marginTop="24dp"
|
|
android:layout_marginBottom="24dp">
|
|
<ImageView
|
|
android:id="@+id/q"
|
|
android:layout_width="60dp"
|
|
android:layout_height="60dp"/>
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="16dp">
|
|
<TextView
|
|
android:textSize="16sp"
|
|
android:textStyle="bold"
|
|
android:textColor="#a6000000"
|
|
android:id="@+id/s"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
<TextView
|
|
android:textSize="12sp"
|
|
android:textColor="#48000000"
|
|
android:id="@+id/r"
|
|
android:visibility="visible"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="4dp"
|
|
android:layout_marginBottom="8dp"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</FrameLayout>
|
|
</LinearLayout>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|