Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in / Register
Toggle navigation
P
PDF Viewer Scanner White
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
PDF Viewer Scanner White
Commits
2896ca01
Commit
2896ca01
authored
Jan 25, 2025
by
wanglei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
...
parent
e75feaf2
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
320 additions
and
36 deletions
+320
-36
NotificationUiUtil.kt
.../com/base/pdfviewerscannerwhite/fcm/NotificationUiUtil.kt
+53
-36
notification_common_large.xml
app/src/main/res/layout/notification_common_large.xml
+92
-0
notification_common_small.xml
app/src/main/res/layout/notification_common_small.xml
+54
-0
notification_constellation_big.xml
app/src/main/res/layout/notification_constellation_big.xml
+79
-0
notification_constellation_small.xml
app/src/main/res/layout/notification_constellation_small.xml
+42
-0
d_xingzuo.webp
app/src/main/res/mipmap-xxhdpi/d_xingzuo.webp
+0
-0
x_xingzuo.webp
app/src/main/res/mipmap-xxhdpi/x_xingzuo.webp
+0
-0
No files found.
app/src/main/java/com/base/pdfviewerscannerwhite/fcm/NotificationUiUtil.kt
View file @
2896ca01
...
@@ -186,9 +186,9 @@ object NotificationUiUtil {
...
@@ -186,9 +186,9 @@ object NotificationUiUtil {
}
}
fun
setActionNotification
(
context
:
Context
,
actionId
:
String
)
{
fun
setActionNotification
(
context
:
Context
,
actionId
:
String
)
{
va
l
bigRemoteViews
=
va
r
bigRemoteViews
=
RemoteViews
(
MyApplication
.
context
.
packageName
,
R
.
layout
.
notification_message
)
RemoteViews
(
MyApplication
.
context
.
packageName
,
R
.
layout
.
notification_message
)
va
l
smallRemoteViews
=
va
r
smallRemoteViews
=
RemoteViews
(
MyApplication
.
context
.
packageName
,
R
.
layout
.
notification_message
)
RemoteViews
(
MyApplication
.
context
.
packageName
,
R
.
layout
.
notification_message
)
val
intent
=
Intent
(
context
,
SplashActivity
::
class
.
java
)
val
intent
=
Intent
(
context
,
SplashActivity
::
class
.
java
)
intent
.
putExtra
(
"actionId"
,
actionId
)
intent
.
putExtra
(
"actionId"
,
actionId
)
...
@@ -215,58 +215,75 @@ object NotificationUiUtil {
...
@@ -215,58 +215,75 @@ object NotificationUiUtil {
}
}
NOTIFICATION_ACTION_SCREENSHOT
->
{
NOTIFICATION_ACTION_SCREENSHOT
->
{
val
tittle
=
"Not enough storage space? Clean up screenshots to free up space."
val
tittle
=
"Not enough storage space?"
val
desc
=
context
.
getString
(
R
.
string
.
find_your_screenshot_clean_it
)
val
content
=
"Clean up screenshots to free up space."
bigRemoteViews
.
setTextViewText
(
R
.
id
.
tv_tittle
,
tittle
)
smallRemoteViews
=
RemoteViews
(
MyApplication
.
context
.
packageName
,
R
.
layout
.
notification_common_small
)
smallRemoteViews
.
setTextViewText
(
R
.
id
.
tv_tittle
,
tittle
)
bigRemoteViews
=
RemoteViews
(
MyApplication
.
context
.
packageName
,
R
.
layout
.
notification_common_large
)
bigRemoteViews
.
setTextViewText
(
R
.
id
.
tv_desc
,
desc
)
smallRemoteViews
.
setTextViewText
(
R
.
id
.
tv_desc
,
desc
)
smallRemoteViews
.
setTextViewText
(
R
.
id
.
tv_content
,
content
)
bigRemoteViews
.
setTextViewText
(
R
.
id
.
tv_title
,
tittle
)
bigRemoteViews
.
setTextViewText
(
R
.
id
.
tv_content
,
content
)
bigRemoteViews
.
setImageViewResource
(
R
.
id
.
iv_image
,
R
.
mipmap
.
icon_screenshot_tools
)
sendCustomNotification
(
context
,
intent
,
bigRemoteViews
,
smallRemoteViews
)
sendCustomNotification
(
context
,
intent
,
bigRemoteViews
,
smallRemoteViews
)
}
}
NOTIFICATION_ACTION_SIMILAR
->
{
NOTIFICATION_ACTION_SIMILAR
->
{
val
tittle
=
"Too many similar photos? Organize your memories and save space."
val
tittle
=
"Too many similar photos?"
val
desc
=
context
.
getString
(
R
.
string
.
find_your_similar_photos_to_clean_it
)
val
content
=
"Organize your memories and save space."
bigRemoteViews
.
setTextViewText
(
R
.
id
.
tv_tittle
,
tittle
)
smallRemoteViews
=
RemoteViews
(
MyApplication
.
context
.
packageName
,
R
.
layout
.
notification_common_small
)
smallRemoteViews
.
setTextViewText
(
R
.
id
.
tv_tittle
,
tittle
)
bigRemoteViews
=
RemoteViews
(
MyApplication
.
context
.
packageName
,
R
.
layout
.
notification_common_large
)
bigRemoteViews
.
setTextViewText
(
R
.
id
.
tv_desc
,
desc
)
smallRemoteViews
.
setTextViewText
(
R
.
id
.
tv_desc
,
desc
)
smallRemoteViews
.
setTextViewText
(
R
.
id
.
tv_content
,
content
)
bigRemoteViews
.
setTextViewText
(
R
.
id
.
tv_title
,
tittle
)
bigRemoteViews
.
setTextViewText
(
R
.
id
.
tv_content
,
content
)
bigRemoteViews
.
setImageViewResource
(
R
.
id
.
iv_image
,
R
.
mipmap
.
icon_similar_tool
)
sendCustomNotification
(
context
,
intent
,
bigRemoteViews
,
smallRemoteViews
)
sendCustomNotification
(
context
,
intent
,
bigRemoteViews
,
smallRemoteViews
)
}
}
NOTIFICATION_ACTION_WHATSAPP
->
{
NOTIFICATION_ACTION_WHATSAPP
->
{
val
tittle
=
"Clear WhatsApp cache and free up space on your device!"
// val tittle = "WhatsApp Clean"
val
desc
=
context
.
getString
(
R
.
string
.
whatsapp_pop
)
val
content
=
"Clear WhatsApp cache and free up space on your device!"
bigRemoteViews
.
setTextViewText
(
R
.
id
.
tv_tittle
,
tittle
)
smallRemoteViews
=
RemoteViews
(
MyApplication
.
context
.
packageName
,
R
.
layout
.
notification_common_small
)
smallRemoteViews
.
setTextViewText
(
R
.
id
.
tv_tittle
,
tittle
)
bigRemoteViews
=
RemoteViews
(
MyApplication
.
context
.
packageName
,
R
.
layout
.
notification_common_large
)
bigRemoteViews
.
setTextViewText
(
R
.
id
.
tv_desc
,
desc
)
smallRemoteViews
.
setTextViewText
(
R
.
id
.
tv_desc
,
desc
)
smallRemoteViews
.
setTextViewText
(
R
.
id
.
tv_content
,
content
)
bigRemoteViews
.
setTextViewText
(
R
.
id
.
tv_title
,
content
)
// bigRemoteViews.setTextViewText(R.id.tv_content, content)
bigRemoteViews
.
setImageViewResource
(
R
.
id
.
iv_image
,
R
.
mipmap
.
icon_whatsapp_tools
)
sendCustomNotification
(
context
,
intent
,
bigRemoteViews
,
smallRemoteViews
)
sendCustomNotification
(
context
,
intent
,
bigRemoteViews
,
smallRemoteViews
)
}
}
NOTIFICATION_ACTION_LARGEFILE
->
{
NOTIFICATION_ACTION_LARGEFILE
->
{
val
tittle
=
"One-tap cleanup of large files to free up your phone's storage."
val
content
=
"One-tap cleanup of large files to free up your phone's storage."
val
desc
=
context
.
getString
(
R
.
string
.
find_your_large_file_to_clean_it
)
// val tittle = "Largefile Clean"
bigRemoteViews
.
setTextViewText
(
R
.
id
.
tv_tittle
,
tittle
)
smallRemoteViews
=
RemoteViews
(
MyApplication
.
context
.
packageName
,
R
.
layout
.
notification_common_small
)
smallRemoteViews
.
setTextViewText
(
R
.
id
.
tv_tittle
,
tittle
)
bigRemoteViews
=
RemoteViews
(
MyApplication
.
context
.
packageName
,
R
.
layout
.
notification_common_large
)
bigRemoteViews
.
setTextViewText
(
R
.
id
.
tv_desc
,
desc
)
smallRemoteViews
.
setTextViewText
(
R
.
id
.
tv_desc
,
desc
)
smallRemoteViews
.
setTextViewText
(
R
.
id
.
tv_content
,
content
)
bigRemoteViews
.
setTextViewText
(
R
.
id
.
tv_title
,
content
)
// bigRemoteViews.setTextViewText(R.id.tv_content, content)
bigRemoteViews
.
setImageViewResource
(
R
.
id
.
iv_image
,
R
.
mipmap
.
icon_file_tool
)
sendCustomNotification
(
context
,
intent
,
bigRemoteViews
,
smallRemoteViews
)
sendCustomNotification
(
context
,
intent
,
bigRemoteViews
,
smallRemoteViews
)
}
}
NOTIFICATION_ACTION_ZODIAC
->
{
NOTIFICATION_ACTION_ZODIAC
->
{
val
tittle
=
context
.
getString
(
R
.
string
.
zodiac
)
smallRemoteViews
=
RemoteViews
(
MyApplication
.
context
.
packageName
,
R
.
layout
.
notification_constellation_small
)
bigRemoteViews
=
RemoteViews
(
MyApplication
.
context
.
packageName
,
R
.
layout
.
notification_constellation_big
)
val
content
=
arrayOf
(
val
content
=
arrayOf
(
"Your daily horoscope has the answers you seek. Click to discover!"
,
Pair
(
"Unlock the Universe's Secrets!"
,
"Your daily horoscope has the answers you seek. Click to discover!"
)
,
"Your horoscope opens new doors. Click to unlock your destiny!"
,
Pair
(
"Discover Your Hidden Fortune!"
,
"Your horoscope opens new doors. Click to unlock your destiny!"
)
,
"Today's horoscope reveals life-changing secrets. Click to see!"
,
Pair
(
"Your Fate is in the Stars!"
,
"Today's horoscope reveals life-changing secrets. Click to see!"
)
,
"Your daily horoscope maps your path to success. Click to find it!"
Pair
(
"Unlock Your Future Today!"
,
"Your daily horoscope maps your path to success. Click to find it!"
),
).
random
()
).
random
()
val
desc
=
content
smallRemoteViews
.
setTextViewText
(
R
.
id
.
tv_desc
,
content
.
second
)
bigRemoteViews
.
setTextViewText
(
R
.
id
.
tv_tittle
,
tittle
)
smallRemoteViews
.
setTextViewText
(
R
.
id
.
tv_tittle
,
tittle
)
bigRemoteViews
.
setTextViewText
(
R
.
id
.
tv_title
,
content
.
first
)
bigRemoteViews
.
setTextViewText
(
R
.
id
.
tv_desc
,
desc
)
bigRemoteViews
.
setTextViewText
(
R
.
id
.
tv_desc
,
content
.
second
)
smallRemoteViews
.
setTextViewText
(
R
.
id
.
tv_desc
,
desc
)
sendCustomNotification
(
context
,
intent
,
bigRemoteViews
,
smallRemoteViews
)
sendCustomNotification
(
context
,
intent
,
bigRemoteViews
,
smallRemoteViews
)
}
}
...
...
app/src/main/res/layout/notification_common_large.xml
0 → 100644
View file @
2896ca01
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:tools=
"http://schemas.android.com/tools"
android:layout_width=
"match_parent"
android:layout_height=
"200dp"
android:background=
"@drawable/white_background"
>
<LinearLayout
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:orientation=
"vertical"
>
<LinearLayout
android:layout_width=
"match_parent"
android:layout_height=
"0dp"
android:layout_marginStart=
"16dp"
android:layout_marginTop=
"24dp"
android:layout_marginEnd=
"16dp"
android:layout_weight=
"1"
android:gravity=
"center"
android:orientation=
"horizontal"
>
<ImageView
android:id=
"@+id/iv_image"
android:layout_width=
"45dp"
android:layout_height=
"45dp"
android:src=
"@mipmap/icon_screenshot_tools"
tools:ignore=
"ContentDescription"
/>
<LinearLayout
android:layout_width=
"0dp"
android:layout_height=
"wrap_content"
android:layout_marginHorizontal=
"16dp"
android:layout_weight=
"1"
android:orientation=
"vertical"
tools:ignore=
"NestedWeights"
>
<TextView
android:id=
"@+id/tv_title"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:textColor=
"@color/color_181b1f"
android:textSize=
"16sp"
android:textStyle=
"bold"
tools:text=
"Screenshot Clean"
/>
<TextView
android:id=
"@+id/tv_content"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_marginTop=
"2dp"
android:textColor=
"#999999"
android:textSize=
"14sp"
tools:text=
"aaaaa"
/>
</LinearLayout>
</LinearLayout>
<RelativeLayout
android:layout_width=
"match_parent"
android:layout_height=
"0dp"
android:layout_weight=
"1"
android:gravity=
"center"
>
<TextView
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_marginStart=
"16dp"
android:layout_marginEnd=
"16dp"
android:background=
"@drawable/gradient"
android:gravity=
"center"
android:paddingTop=
"8dp"
android:paddingBottom=
"8dp"
android:text=
"@string/clean"
android:textColor=
"@color/white"
android:textSize=
"18sp"
android:textStyle=
"bold"
/>
</RelativeLayout>
</LinearLayout>
<TextView
android:id=
"@+id/tv_mark"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:text=
""
android:textColor=
"@color/colorPrimary"
android:textSize=
"16sp"
/>
</RelativeLayout>
\ No newline at end of file
app/src/main/res/layout/notification_common_small.xml
0 → 100644
View file @
2896ca01
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"match_parent"
android:layout_height=
"60dp"
android:gravity=
"center"
android:paddingTop=
"4dp"
android:paddingBottom=
"4dp"
android:paddingStart=
"8dp"
android:paddingEnd=
"12dp"
android:orientation=
"horizontal"
>
<LinearLayout
android:id=
"@+id/ll_content"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:gravity=
"center"
android:orientation=
"horizontal"
>
<TextView
android:id=
"@+id/tv_content"
android:layout_width=
"0dp"
android:layout_height=
"match_parent"
android:layout_weight=
"1"
android:layout_marginEnd=
"10dp"
android:gravity=
"center_vertical"
android:text=
"@string/notification_clean_junk"
android:textColor=
"@color/color_181b1f"
android:textSize=
"12sp"
/>
<TextView
android:id=
"@+id/tv_btn"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:paddingTop=
"6dp"
android:paddingBottom=
"6dp"
android:paddingStart=
"14dp"
android:paddingEnd=
"14dp"
android:text=
"@string/clean"
android:textColor=
"@color/white"
android:textSize=
"12sp"
android:textStyle=
"bold"
android:background=
"@drawable/gradient"
/>
</LinearLayout>
<TextView
android:id=
"@+id/tv_mark"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:text=
""
android:textSize=
"16sp"
android:textColor=
"@color/colorPrimary"
/>
</RelativeLayout>
\ No newline at end of file
app/src/main/res/layout/notification_constellation_big.xml
0 → 100644
View file @
2896ca01
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:tools=
"http://schemas.android.com/tools"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:orientation=
"vertical"
>
<LinearLayout
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_marginTop=
"20dp"
android:orientation=
"horizontal"
>
<ImageView
android:layout_width=
"52dp"
android:layout_height=
"52dp"
android:layout_gravity=
"center_vertical"
android:layout_marginStart=
"20dp"
android:src=
"@mipmap/d_xingzuo"
tools:ignore=
"ContentDescription"
/>
<LinearLayout
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_gravity=
"center_vertical"
android:layout_marginHorizontal=
"8dp"
android:orientation=
"vertical"
>
<TextView
android:id=
"@+id/tv_title"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:textColor=
"@color/black"
android:textSize=
"14sp"
android:textStyle=
"bold"
tools:ignore=
"HardcodedText"
tools:text=
"Check out your luck today!"
/>
<TextView
android:id=
"@+id/tv_desc"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_marginTop=
"2dp"
android:text=
"Check out your luck today!"
android:textColor=
"#999999"
android:textSize=
"14sp"
tools:ignore=
"HardcodedText"
/>
<TextView
android:id=
"@+id/tv_tittle_2"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_marginTop=
"8dp"
android:textColor=
"#898989"
android:textSize=
"12sp"
android:visibility=
"gone"
tools:ignore=
"HardcodedText"
/>
</LinearLayout>
</LinearLayout>
<TextView
android:id=
"@+id/tv_btn"
android:layout_width=
"match_parent"
android:layout_height=
"40dp"
android:layout_marginHorizontal=
"25dp"
android:layout_marginVertical=
"16dp"
android:background=
"@drawable/bg_0571ed_25"
android:gravity=
"center"
android:text=
"View"
android:textColor=
"@color/white"
android:textSize=
"15sp"
tools:ignore=
"HardcodedText"
/>
</LinearLayout>
\ No newline at end of file
app/src/main/res/layout/notification_constellation_small.xml
0 → 100644
View file @
2896ca01
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:tools=
"http://schemas.android.com/tools"
android:layout_width=
"match_parent"
android:layout_height=
"60dp"
android:background=
"@drawable/bg_ffffff_15"
>
<ImageView
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_gravity=
"center_vertical"
android:layout_marginStart=
"15dp"
android:src=
"@mipmap/x_xingzuo"
tools:ignore=
"ContentDescription"
/>
<TextView
android:id=
"@+id/tv_desc"
android:layout_width=
"0dp"
android:layout_height=
"wrap_content"
android:layout_gravity=
"center"
android:layout_marginStart=
"7dp"
android:layout_marginEnd=
"40dp"
android:layout_weight=
"1"
android:textColor=
"@color/black"
android:textSize=
"14sp"
android:text=
"Check out your luck today!"
tools:ignore=
"HardcodedText"
/>
<TextView
android:id=
"@+id/tv_btn"
android:layout_width=
"69dp"
android:layout_height=
"34dp"
android:layout_gravity=
"center_vertical"
android:layout_marginEnd=
"13dp"
android:background=
"@drawable/bg_0571ed_18"
android:gravity=
"center"
android:text=
"View"
android:textColor=
"@color/white"
android:textSize=
"15sp"
tools:ignore=
"HardcodedText"
/>
</LinearLayout>
\ No newline at end of file
app/src/main/res/mipmap-xxhdpi/d_xingzuo.webp
0 → 100644
View file @
2896ca01
File added
app/src/main/res/mipmap-xxhdpi/x_xingzuo.webp
0 → 100644
View file @
2896ca01
File added
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