splash_activity.xml
2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.studymachine.www.ui.activity.SplashActivity">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/splash">
</ImageView>
<!-- <com.airbnb.lottie.LottieAnimationView-->
<!-- android:id="@+id/lav_splash_lottie"-->
<!-- android:layout_width="wrap_content"-->
<!-- android:layout_height="wrap_content"-->
<!-- android:layout_gravity="center"-->
<!-- android:layout_marginBottom="@dimen/dp_40"-->
<!-- app:lottie_autoPlay="true"-->
<!-- app:lottie_loop="false"-->
<!-- app:lottie_rawRes="@raw/welcome" />-->
<!-- <com.hjq.widget.view.SlantedTextView-->
<!-- android:id="@+id/iv_splash_debug"-->
<!-- android:layout_width="wrap_content"-->
<!-- android:layout_height="wrap_content"-->
<!-- android:layout_gravity="end"-->
<!-- android:colorBackground="#b65656"-->
<!-- android:paddingHorizontal="@dimen/dp_15"-->
<!-- android:paddingVertical="@dimen/dp_10"-->
<!-- android:textColor="@color/white"-->
<!-- android:textSize="@dimen/sp_12"-->
<!-- android:textStyle="bold"-->
<!-- tools:text="DEBUG" />-->
<!-- <androidx.appcompat.widget.AppCompatTextView-->
<!-- android:id="@+id/iv_splash_name"-->
<!-- android:layout_width="wrap_content"-->
<!-- android:layout_height="wrap_content"-->
<!-- android:layout_gravity="center_horizontal|bottom"-->
<!-- android:layout_marginTop="@dimen/dp_50"-->
<!-- android:layout_marginBottom="@dimen/dp_30"-->
<!-- android:text="@string/app_name"-->
<!-- android:textColor="@color/black60"-->
<!-- android:textSize="@dimen/sp_18"-->
<!-- android:textStyle="bold" />-->
</FrameLayout>