2025-10-24 17:55:15 +08:00
|
|
|
<?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">
|
|
|
|
|
|
|
|
|
|
<data></data>
|
|
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
|
android:id="@+id/root"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:background="@color/transparent">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
|
android:id="@+id/container"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:background="#000" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
|
android:id="@+id/btn_skip_img"
|
|
|
|
|
android:layout_width="40dp"
|
|
|
|
|
android:layout_height="40dp"
|
|
|
|
|
android:layout_gravity="right"
|
|
|
|
|
android:layout_marginTop="37dp"
|
|
|
|
|
android:layout_marginRight="15dp"
|
|
|
|
|
android:background="@drawable/bg_launcher_skip"
|
2025-12-24 17:52:26 +08:00
|
|
|
android:visibility="visible">
|
2025-10-24 17:55:15 +08:00
|
|
|
|
|
|
|
|
<com.xscm.moduleutil.custon.CircleProgress
|
|
|
|
|
android:id="@+id/progress"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
app:cp_bg_color="@color/white"
|
|
|
|
|
app:cp_cur_progress="0"
|
|
|
|
|
app:cp_fg_color="#ff7200"
|
|
|
|
|
app:cp_stroke_width="2dp" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:text="@string/recommend_skip"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
android:textSize="11sp" />
|
|
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/btn_skip_video"
|
|
|
|
|
android:layout_width="44dp"
|
|
|
|
|
android:layout_height="26dp"
|
|
|
|
|
android:layout_gravity="right"
|
|
|
|
|
android:layout_marginTop="37dp"
|
|
|
|
|
android:layout_marginRight="15dp"
|
|
|
|
|
android:background="@drawable/bg_launcher_skip_2"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:text="@string/recommend_skip"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
android:textSize="11sp"
|
|
|
|
|
android:visibility="invisible" />
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/ad_tip"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="40dp"
|
|
|
|
|
android:layout_gravity="bottom|center_horizontal"
|
|
|
|
|
android:layout_marginBottom="50dp"
|
|
|
|
|
android:background="@drawable/bg_launcher_ad_tip"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:paddingLeft="20dp"
|
|
|
|
|
android:paddingRight="20dp"
|
|
|
|
|
android:visibility="invisible">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/a_067"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
android:textSize="13sp" />
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="13dp"
|
|
|
|
|
android:layout_height="13dp"
|
|
|
|
|
android:src="@mipmap/icon_arrow_right_3" />
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
|
2025-12-24 17:52:26 +08:00
|
|
|
<!-- <ImageView-->
|
|
|
|
|
<!-- android:id="@+id/cover"-->
|
|
|
|
|
<!-- android:layout_width="match_parent"-->
|
|
|
|
|
<!-- android:layout_height="match_parent"-->
|
|
|
|
|
<!-- android:clickable="true"-->
|
|
|
|
|
<!-- android:src="@mipmap/screen"-->
|
|
|
|
|
<!-- android:scaleType="centerCrop"-->
|
|
|
|
|
<!-- android:visibility="visible" />-->
|
2025-10-24 17:55:15 +08:00
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
</layout>
|