-
Notifications
You must be signed in to change notification settings - Fork 0
/
activity_splash.xml
41 lines (33 loc) · 1.38 KB
/
activity_splash.xml
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/splashLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:scrollbarSize="4dp">
<ImageView
android:id="@+id/splash_logo"
android:layout_width="250dp"
android:layout_height="250dp"
android:layout_centerInParent="true"
android:src="@drawable/logoagri2" />
<TextView
android:id="@+id/splash_app_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/splash_logo"
android:layout_centerHorizontal="true"
android:layout_marginTop="15dp"
android:layout_margin="5dp"
android:text=" Technology And Nature,Vitalizing Agriculture "
android:textColor="@color/maroon"
android:textSize="15dp"
android:textStyle="italic" />
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/mainLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone">
</androidx.constraintlayout.widget.ConstraintLayout>
</RelativeLayout>