Updated on 2026-08-14
This commit is contained in:
parent
f7c05ae07a
commit
d78328de1c
3 changed files with 50 additions and 1 deletions
14
app/src/main/res/drawable/shape_circle_home_screen.xml
Normal file
14
app/src/main/res/drawable/shape_circle_home_screen.xml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval">
|
||||
|
||||
<size
|
||||
android:width="40dp"
|
||||
android:height="40dp" />
|
||||
|
||||
<gradient
|
||||
android:angle="270"
|
||||
android:endColor="#47F8F8F8"
|
||||
android:startColor="#F4F4F4"
|
||||
android:type="linear" />
|
||||
|
||||
</shape>
|
||||
|
|
@ -3,7 +3,10 @@
|
|||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:id="@+id/onboarding_main_container"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
android:layout_height="match_parent"
|
||||
android:clipChildren="false">
|
||||
|
||||
<include layout="@layout/view_bg_home" />
|
||||
|
||||
<androidx.appcompat.widget.AppCompatImageView
|
||||
android:id="@+id/imv_back_card"
|
||||
|
|
|
|||
32
app/src/main/res/layout/view_bg_home.xml
Normal file
32
app/src/main/res/layout/view_bg_home.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:translationY="-50dp">
|
||||
|
||||
<androidx.appcompat.widget.AppCompatImageView
|
||||
android:id="@+id/bg_circle_large"
|
||||
android:layout_width="670dp"
|
||||
android:layout_height="670dp"
|
||||
android:src="@drawable/shape_circle_home_screen"
|
||||
android:translationX="160dp"
|
||||
android:translationY="-175dp" />
|
||||
|
||||
<androidx.appcompat.widget.AppCompatImageView
|
||||
android:id="@+id/bg_circle_medium"
|
||||
android:layout_width="650dp"
|
||||
android:layout_height="650dp"
|
||||
android:src="@drawable/shape_circle"
|
||||
android:tint="@color/backgroundWhite"
|
||||
android:translationX="170dp"
|
||||
android:translationY="-165dp" />
|
||||
|
||||
<androidx.appcompat.widget.AppCompatImageView
|
||||
android:id="@+id/bg_circle_small"
|
||||
android:layout_width="590dp"
|
||||
android:layout_height="590dp"
|
||||
android:src="@drawable/shape_circle_home_screen"
|
||||
android:translationX="192dp"
|
||||
android:translationY="-132dp" />
|
||||
|
||||
</FrameLayout>
|
||||
Loading…
Add table
Add a link
Reference in a new issue