Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in / Register
Toggle navigation
A
appzxhy
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wanglei
appzxhy
Commits
ca01d560
Commit
ca01d560
authored
Jun 30, 2025
by
wanglei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[迭代]
parent
6e4f52f4
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
49 additions
and
20 deletions
+49
-20
build.gradle.kts
app/build.gradle.kts
+0
-1
bg_37b6ff_79dfff_20.xml
app/src/main/res/drawable/bg_37b6ff_79dfff_20.xml
+11
-0
bg_6afae7_90.xml
app/src/main/res/drawable/bg_6afae7_90.xml
+7
-0
bg_b0ffffff_50.xml
app/src/main/res/drawable/bg_b0ffffff_50.xml
+7
-0
bg_ffffff_50.xml
app/src/main/res/drawable/bg_ffffff_50.xml
+6
-0
activity_layout_clean_guide.xml
app/src/main/res/layout/activity_layout_clean_guide.xml
+9
-7
dialog_battery_use.xml
app/src/main/res/layout/dialog_battery_use.xml
+9
-12
No files found.
app/build.gradle.kts
View file @
ca01d560
...
@@ -197,7 +197,6 @@ dependencies {
...
@@ -197,7 +197,6 @@ dependencies {
implementation
(
"com.android.billingclient:billing:$billing_version"
)
implementation
(
"com.android.billingclient:billing:$billing_version"
)
implementation
(
"com.android.billingclient:billing-ktx:$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
app/src/main/res/drawable/bg_37b6ff_79dfff_20.xml
0 → 100644
View file @
ca01d560
<?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
app/src/main/res/drawable/bg_6afae7_90.xml
0 → 100644
View file @
ca01d560
<?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
app/src/main/res/drawable/bg_b0ffffff_50.xml
0 → 100644
View file @
ca01d560
<?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
app/src/main/res/drawable/bg_ffffff_50.xml
0 → 100644
View file @
ca01d560
<?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
app/src/main/res/layout/activity_layout_clean_guide.xml
View file @
ca01d560
...
@@ -3,21 +3,22 @@
...
@@ -3,21 +3,22 @@
xmlns:app=
"http://schemas.android.com/apk/res-auto"
xmlns:app=
"http://schemas.android.com/apk/res-auto"
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:layout_height=
"match_parent"
xmlns:tools=
"http://schemas.android.com/tools"
android:background=
"@color/colorPrimary"
>
android:background=
"@color/colorPrimary"
>
<
com.noober.background.view.BL
TextView
<TextView
android:id=
"@+id/id_skip"
android:id=
"@+id/id_skip"
tools:visibility=
"visible"
android:layout_width=
"92dp"
android:layout_width=
"92dp"
android:layout_height=
"36dp"
android:layout_height=
"36dp"
android:layout_marginTop=
"36dp"
android:layout_marginTop=
"36dp"
android:layout_marginEnd=
"20dp"
android:layout_marginEnd=
"20dp"
android:background=
"@drawable/bg_b0ffffff_50"
android:gravity=
"center"
android:gravity=
"center"
android:text=
"Skip"
android:text=
"Skip"
android:textColor=
"@color/colorPrimary"
android:textColor=
"@color/colorPrimary"
android:textSize=
"16sp"
android:textSize=
"16sp"
android:visibility=
"gone"
android:visibility=
"gone"
app:bl_corners_radius=
"50dp"
app:bl_solid_color=
"#B0FFFFFF"
app:layout_constraintEnd_toEndOf=
"parent"
app:layout_constraintEnd_toEndOf=
"parent"
app:layout_constraintTop_toTopOf=
"parent"
/>
app:layout_constraintTop_toTopOf=
"parent"
/>
...
@@ -89,20 +90,21 @@
...
@@ -89,20 +90,21 @@
android:textSize=
"15sp"
android:textSize=
"15sp"
android:textStyle=
"bold"
/>
android:textStyle=
"bold"
/>
<
com.noober.background.view.BL
TextView
<TextView
android:id=
"@+id/id_clean_02"
android:id=
"@+id/id_clean_02"
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"50dp"
android:layout_height=
"50dp"
android:layout_marginHorizontal=
"50dp"
android:layout_marginHorizontal=
"50dp"
android:layout_marginTop=
"18dp"
android:layout_marginTop=
"18dp"
android:background=
"@drawable/bg_6afae7_90"
android:gravity=
"center"
android:gravity=
"center"
android:text=
"Clean"
android:text=
"Clean"
android:textColor=
"@color/colorPrimary"
android:textColor=
"@color/colorPrimary"
android:textSize=
"19sp"
android:textSize=
"19sp"
android:textStyle=
"bold"
android:textStyle=
"bold"
/>
app:bl_corners_radius=
"90dp"
app:bl_solid_color=
"#6AFAE7"
/>
</androidx.appcompat.widget.LinearLayoutCompat>
</androidx.appcompat.widget.LinearLayoutCompat>
</FrameLayout>
</FrameLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
app/src/main/res/layout/dialog_battery_use.xml
View file @
ca01d560
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<
com.noober.background.view.BL
LinearLayout
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:app=
"http://schemas.android.com/apk/res-auto"
xmlns:tools=
"http://schemas.android.com/tools"
xmlns:tools=
"http://schemas.android.com/tools"
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_height=
"wrap_content"
android:orientation=
"vertical"
>
android:orientation=
"vertical"
>
<
com.noober.background.view.BL
LinearLayout
<LinearLayout
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginHorizontal=
"24dp"
android:layout_marginHorizontal=
"24dp"
android:background=
"@drawable/bg_37b6ff_79dfff_20"
android:gravity=
"center_horizontal"
android:gravity=
"center_horizontal"
android:orientation=
"vertical"
android:orientation=
"vertical"
>
app:bl_corners_radius=
"20dp"
app:bl_gradient_endColor=
"#79DFFF"
app:bl_gradient_startColor=
"#37B6FF"
>
<FrameLayout
<FrameLayout
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
...
@@ -73,18 +71,17 @@
...
@@ -73,18 +71,17 @@
android:layout_marginTop=
"12dp"
android:layout_marginTop=
"12dp"
android:layout_marginBottom=
"26dp"
>
android:layout_marginBottom=
"26dp"
>
<
com.noober.background.view.BL
TextView
<TextView
android:id=
"@+id/id_tv_scan"
android:id=
"@+id/id_tv_scan"
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"46dp"
android:layout_height=
"46dp"
android:layout_gravity=
"center"
android:layout_gravity=
"center"
android:background=
"@drawable/bg_ffffff_50"
android:gravity=
"center"
android:gravity=
"center"
android:text=
"SCAN"
android:text=
"SCAN"
android:textColor=
"#6DD8FF"
android:textColor=
"#6DD8FF"
android:textSize=
"23sp"
android:textSize=
"23sp"
android:textStyle=
"bold"
android:textStyle=
"bold"
/>
app:bl_corners_radius=
"50dp"
app:bl_solid_color=
"@color/white"
/>
<com.airbnb.lottie.LottieAnimationView
<com.airbnb.lottie.LottieAnimationView
android:layout_width=
"wrap_content"
android:layout_width=
"wrap_content"
...
@@ -94,7 +91,7 @@
...
@@ -94,7 +91,7 @@
app:lottie_rawRes=
"@raw/dialogbtn3"
/>
app:lottie_rawRes=
"@raw/dialogbtn3"
/>
</FrameLayout>
</FrameLayout>
</
com.noober.background.view.BL
LinearLayout>
</LinearLayout>
<androidx.appcompat.widget.AppCompatImageView
<androidx.appcompat.widget.AppCompatImageView
android:id=
"@+id/id_img_close"
android:id=
"@+id/id_img_close"
...
@@ -104,4 +101,4 @@
...
@@ -104,4 +101,4 @@
android:layout_marginTop=
"12dp"
android:layout_marginTop=
"12dp"
android:src=
"@drawable/guan4"
/>
android:src=
"@drawable/guan4"
/>
</com.noober.background.view.BLLinearLayout>
</LinearLayout>
\ No newline at end of file
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment