| 1234567891011121314151617181920212223242526272829303132333435 |
- <?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:background="@android:color/black"
- android:orientation="vertical">
- <VideoView
- android:id="@+id/splash_video_view"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_gravity="center"
- android:visibility="gone" />
- <ImageView
- android:id="@+id/splash_image_view"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:scaleType="fitXY"
- android:src="@drawable/kaipin" />
- <TextView
- android:id="@+id/splash_skip"
- android:layout_width="wrap_content"
- android:layout_height="24dp"
- android:layout_gravity="top|end"
- android:gravity="center"
- android:paddingStart="10dp"
- android:paddingEnd="10dp"
- android:layout_margin="@dimen/content_padding_20"
- android:textColor="#ffffff"
- android:textSize="13sp"
- android:background="@drawable/shape_ash_solid_rectangle_small_tra30"
- android:visibility="gone" />
- </FrameLayout>
|