POZO_Retail/app/build/intermediates/merged-not-compiled-resources/release/layout/item_layout2.xml

91 lines
3.2 KiB
XML

<androidx.constraintlayout.widget.ConstraintLayout
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:background="@drawable/new_bg_grad_bb_splash"
tools:context=".masters.sales_screen_mobile.SplashScreenNew">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toTopOf="@id/bottomContent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/_20dp"
android:layout_marginTop="25dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Reduce wait times"
android:textSize="42sp"
android:textColor="@color/white"
android:fontFamily="@font/inter_600"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Process transactions instantly"
android:textSize="26sp"
android:textColor="@color/white"
android:fontFamily="@font/inter_500"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="end"
android:layout_marginHorizontal="@dimen/dp_40">
<ImageView
android:layout_width="220dp"
android:layout_height="220dp"
android:src="@drawable/clock_image"/>
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_marginBottom="100dp"
android:id="@+id/bottomContent"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent">
<ImageView
android:layout_width="9dp"
android:layout_height="9dp"
android:src="@drawable/plain_dot_round"/>
<ImageView
android:layout_marginStart="7dp"
android:layout_width="9dp"
android:layout_height="9dp"
android:src="@drawable/plain_dot_filled_round"/>
<ImageView
android:layout_marginStart="7dp"
android:layout_width="9dp"
android:layout_height="9dp"
android:src="@drawable/plain_dot_round"/>
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>