Commit ca01d560 authored by wanglei's avatar wanglei

[迭代]

parent 6e4f52f4
......@@ -197,7 +197,6 @@ dependencies {
implementation("com.android.billingclient:billing:$billing_version")
implementation("com.android.billingclient:billing-ktx:$billing_version")
implementation("com.github.JavaNoober.BackgroundLibrary:libraryx:1.7.6")
}
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:angle="90"
android:endColor="#79dfff"
android:startColor="#37b6ff" />
<corners android:radius="@dimen/dp_20" />
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#6afae7" />
<corners android:radius="@dimen/dp_90" />
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#b0ffffff" />
<corners android:radius="@dimen/dp_50" />
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/white"/>
<corners android:radius="@dimen/dp_50"/>
</shape>
\ No newline at end of file
......@@ -3,21 +3,22 @@
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"
android:background="@color/colorPrimary">
<com.noober.background.view.BLTextView
<TextView
android:id="@+id/id_skip"
tools:visibility="visible"
android:layout_width="92dp"
android:layout_height="36dp"
android:layout_marginTop="36dp"
android:layout_marginEnd="20dp"
android:background="@drawable/bg_b0ffffff_50"
android:gravity="center"
android:text="Skip"
android:textColor="@color/colorPrimary"
android:textSize="16sp"
android:visibility="gone"
app:bl_corners_radius="50dp"
app:bl_solid_color="#B0FFFFFF"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
......@@ -89,20 +90,21 @@
android:textSize="15sp"
android:textStyle="bold" />
<com.noober.background.view.BLTextView
<TextView
android:id="@+id/id_clean_02"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginHorizontal="50dp"
android:layout_marginTop="18dp"
android:background="@drawable/bg_6afae7_90"
android:gravity="center"
android:text="Clean"
android:textColor="@color/colorPrimary"
android:textSize="19sp"
android:textStyle="bold"
app:bl_corners_radius="90dp"
app:bl_solid_color="#6AFAE7" />
android:textStyle="bold" />
</androidx.appcompat.widget.LinearLayoutCompat>
</FrameLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<com.noober.background.view.BLLinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<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:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<com.noober.background.view.BLLinearLayout
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="24dp"
android:background="@drawable/bg_37b6ff_79dfff_20"
android:gravity="center_horizontal"
android:orientation="vertical"
app:bl_corners_radius="20dp"
app:bl_gradient_endColor="#79DFFF"
app:bl_gradient_startColor="#37B6FF">
android:orientation="vertical">
<FrameLayout
android:layout_width="match_parent"
......@@ -73,18 +71,17 @@
android:layout_marginTop="12dp"
android:layout_marginBottom="26dp">
<com.noober.background.view.BLTextView
<TextView
android:id="@+id/id_tv_scan"
android:layout_width="match_parent"
android:layout_height="46dp"
android:layout_gravity="center"
android:background="@drawable/bg_ffffff_50"
android:gravity="center"
android:text="SCAN"
android:textColor="#6DD8FF"
android:textSize="23sp"
android:textStyle="bold"
app:bl_corners_radius="50dp"
app:bl_solid_color="@color/white" />
android:textStyle="bold" />
<com.airbnb.lottie.LottieAnimationView
android:layout_width="wrap_content"
......@@ -94,7 +91,7 @@
app:lottie_rawRes="@raw/dialogbtn3" />
</FrameLayout>
</com.noober.background.view.BLLinearLayout>
</LinearLayout>
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/id_img_close"
......@@ -104,4 +101,4 @@
android:layout_marginTop="12dp"
android:src="@drawable/guan4" />
</com.noober.background.view.BLLinearLayout>
\ No newline at end of file
</LinearLayout>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment