81 lines
3.1 KiB
XML
81 lines
3.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout 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:id="@+id/big_bg"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:background="@mipmap/ic_welcome_bg"
|
|
tools:context=".welcome.WelcomeActivity">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="3"
|
|
android:gravity="center_horizontal">
|
|
|
|
|
|
|
|
<!-- <com.airbnb.lottie.LottieAnimationView-->
|
|
<!-- android:id="@+id/lottieView"-->
|
|
<!-- android:layout_width="@dimen/dp_106"-->
|
|
<!-- android:layout_height="@dimen/dp_106"-->
|
|
<!-- app:lottie_autoPlay="true"-->
|
|
<!-- app:lottie_loop="true"-->
|
|
<!-- android:visibility="gone"-->
|
|
<!-- app:lottie_rawRes="@raw/loading"-->
|
|
<!-- android:layout_centerHorizontal="true"-->
|
|
<!-- android:layout_marginTop="@dimen/dp_200"-->
|
|
<!-- android:scaleType="fitXY" />-->
|
|
<com.hbl.lewan.widget.CircleImageView
|
|
android:id="@+id/lottieView1"
|
|
android:layout_width="@dimen/dp_106"
|
|
android:layout_height="@dimen/dp_106"
|
|
app:es_shape_type="rectangle"
|
|
app:ease_radius="10dp"
|
|
android:visibility="gone"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginTop="@dimen/dp_200"
|
|
android:src="@mipmap/ic_launche" />
|
|
|
|
</RelativeLayout>
|
|
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
android:id="@+id/bottom_ly"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="6"
|
|
android:gravity="bottom"
|
|
android:orientation="vertical"
|
|
android:paddingBottom="@dimen/dp_64"
|
|
android:visibility="invisible">
|
|
|
|
<androidx.appcompat.widget.AppCompatButton
|
|
android:id="@+id/login_bt"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dp_20"
|
|
android:layout_marginRight="@dimen/dp_20"
|
|
android:background="@mipmap/start_login1"
|
|
android:gravity="center"
|
|
android:text="@string/login_txt"
|
|
android:textColor="@color/color_white"
|
|
android:textSize="16sp" />
|
|
|
|
<androidx.appcompat.widget.AppCompatButton
|
|
android:id="@+id/reg_bt"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dp_20"
|
|
android:layout_marginTop="@dimen/dp_10"
|
|
android:layout_marginRight="@dimen/dp_20"
|
|
android:background="@mipmap/start_reg1"
|
|
android:gravity="center"
|
|
android:text="@string/reg_txt"
|
|
android:textColor="@color/white"
|
|
android:textSize="16sp" />
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
|
</LinearLayout> |