|
|
|
@ -1,49 +1,71 @@ |
|
|
|
|
<?xml version="1.0" encoding="utf-8"?> |
|
|
|
|
<RelativeLayout |
|
|
|
|
<RelativeLayout 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" |
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android" |
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto" |
|
|
|
|
android:orientation="vertical"> |
|
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView |
|
|
|
|
android:id="@+id/iv_splash" |
|
|
|
|
android:visibility="gone" |
|
|
|
|
android:layout_width="match_parent" |
|
|
|
|
android:layout_height="match_parent" |
|
|
|
|
android:scaleType="fitXY" |
|
|
|
|
android:visibility="gone" |
|
|
|
|
app:srcCompat="@drawable/start" /> |
|
|
|
|
|
|
|
|
|
<LinearLayout |
|
|
|
|
android:id="@+id/ll_ad" |
|
|
|
|
android:layout_width="match_parent" |
|
|
|
|
android:layout_height="match_parent" |
|
|
|
|
android:orientation="vertical"> |
|
|
|
|
|
|
|
|
|
<FrameLayout |
|
|
|
|
android:id="@+id/fl_ad" |
|
|
|
|
android:layout_width="match_parent" |
|
|
|
|
android:layout_height="match_parent" |
|
|
|
|
android:layout_weight="1" /> |
|
|
|
|
|
|
|
|
|
<RelativeLayout |
|
|
|
|
android:layout_width="match_parent" |
|
|
|
|
android:layout_height="match_parent" |
|
|
|
|
android:layout_weight="8"> |
|
|
|
|
|
|
|
|
|
<LinearLayout |
|
|
|
|
android:layout_width="wrap_content" |
|
|
|
|
android:layout_height="match_parent" |
|
|
|
|
android:layout_centerInParent="true" |
|
|
|
|
android:orientation="horizontal"> |
|
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView |
|
|
|
|
android:layout_width="wrap_content" |
|
|
|
|
android:layout_height="match_parent" |
|
|
|
|
app:srcCompat="@mipmap/ic_launcher" /> |
|
|
|
|
|
|
|
|
|
<TextView |
|
|
|
|
android:layout_width="wrap_content" |
|
|
|
|
android:layout_height="match_parent" |
|
|
|
|
android:gravity="center" |
|
|
|
|
android:layout_marginStart="5dp" |
|
|
|
|
android:gravity="center" |
|
|
|
|
android:text="@string/app_name" |
|
|
|
|
android:textColor="@color/textPrimary" |
|
|
|
|
android:textSize="@dimen/text_medium_size" |
|
|
|
|
android:text="@string/app_name"/> |
|
|
|
|
android:textSize="@dimen/text_medium_size" /> |
|
|
|
|
</LinearLayout> |
|
|
|
|
|
|
|
|
|
<TextView |
|
|
|
|
android:id="@+id/tv_skip" |
|
|
|
|
android:layout_width="wrap_content" |
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
android:layout_alignParentEnd="true" |
|
|
|
|
android:layout_centerVertical="true" |
|
|
|
|
android:layout_marginEnd="15dp" |
|
|
|
|
android:background="@drawable/setting_btn_bg" |
|
|
|
|
android:gravity="center" |
|
|
|
|
android:paddingVertical="5dp" |
|
|
|
|
android:paddingHorizontal="8dp" |
|
|
|
|
android:text="跳过" |
|
|
|
|
android:textColor="@color/textSecondary" |
|
|
|
|
android:textSize="@dimen/text_normal_size" /> |
|
|
|
|
|
|
|
|
|
</RelativeLayout> |
|
|
|
|
</LinearLayout> |
|
|
|
|
|
|
|
|
|