Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
platform_packages_modules_Bluetooth
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LMODroid
platform_packages_modules_Bluetooth
Commits
818145af
Commit
818145af
authored
1 year ago
by
Hyundo Moon
Committed by
Gerrit Code Review
1 year ago
Browse files
Options
Downloads
Plain Diff
Merge "OPP: Fix uploading animation is not stopped" into main
parents
8976afc9
12b13bba
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
android/app/src/com/android/bluetooth/opp/BluetoothOppNotification.java
+34
-15
34 additions, 15 deletions
...c/com/android/bluetooth/opp/BluetoothOppNotification.java
with
34 additions
and
15 deletions
android/app/src/com/android/bluetooth/opp/BluetoothOppNotification.java
+
34
−
15
View file @
818145af
...
...
@@ -105,6 +105,13 @@ class BluetoothOppNotification {
@VisibleForTesting
static
final
int
NOTIFICATION_ID_INBOUND_COMPLETE
=
-
1000006
;
private
static
final
String
NOTIFICATION_GROUP_KEY_PROGRESS
=
"PROGRESS"
;
private
static
final
String
NOTIFICATION_GROUP_KEY_TRANSFER_COMPLETE
=
"TRANSFER_COMPLETE"
;
private
static
final
String
NOTIFICATION_GROUP_KEY_INCOMING_FILE_CONFIRM
=
"INCOMING_FILE_CONFIRM"
;
private
boolean
mUpdateCompleteNotification
=
true
;
private
ContentResolver
mContentResolver
=
null
;
...
...
@@ -382,6 +389,9 @@ class BluetoothOppNotification {
intent
.
setDataAndNormalize
(
Uri
.
parse
(
BluetoothShare
.
CONTENT_URI
+
"/"
+
item
.
id
));
b
.
setContentIntent
(
PendingIntent
.
getBroadcast
(
mContext
,
0
,
intent
,
PendingIntent
.
FLAG_IMMUTABLE
));
if
(
Flags
.
oppFixMultipleNotificationsIssues
())
{
b
.
setGroup
(
NOTIFICATION_GROUP_KEY_PROGRESS
);
}
mNotificationMgr
.
notify
(
NOTIFICATION_ID_PROGRESS
,
b
.
build
());
}
}
...
...
@@ -446,7 +456,7 @@ class BluetoothOppNotification {
Intent
deleteIntent
=
new
Intent
(
Constants
.
ACTION_COMPLETE_HIDE
).
setClassName
(
mContext
,
BluetoothOppReceiver
.
class
.
getName
());
Notification
outNoti
=
Notification
.
Builder
b
=
new
Notification
.
Builder
(
mContext
,
OPP_NOTIFICATION_CHANNEL
).
setOnlyAlertOnce
(
true
)
.
setContentTitle
(
mContext
.
getString
(
R
.
string
.
outbound_noti_title
))
...
...
@@ -462,9 +472,11 @@ class BluetoothOppNotification {
PendingIntent
.
getBroadcast
(
mContext
,
0
,
deleteIntent
,
PendingIntent
.
FLAG_IMMUTABLE
))
.
setWhen
(
timeStamp
)
.
setLocalOnly
(
true
)
.
build
();
mNotificationMgr
.
notify
(
NOTIFICATION_ID_OUTBOUND_COMPLETE
,
outNoti
);
.
setLocalOnly
(
true
);
if
(
Flags
.
oppFixMultipleNotificationsIssues
())
{
b
.
setGroup
(
NOTIFICATION_GROUP_KEY_TRANSFER_COMPLETE
);
}
mNotificationMgr
.
notify
(
NOTIFICATION_ID_OUTBOUND_COMPLETE
,
b
.
build
());
}
else
{
if
(
mNotificationMgr
!=
null
)
{
mNotificationMgr
.
cancel
(
NOTIFICATION_ID_OUTBOUND_COMPLETE
);
...
...
@@ -521,7 +533,7 @@ class BluetoothOppNotification {
Intent
deleteIntent
=
new
Intent
(
Constants
.
ACTION_COMPLETE_HIDE
).
setClassName
(
mContext
,
BluetoothOppReceiver
.
class
.
getName
());
Notification
inNoti
=
Notification
.
Builder
b
=
new
Notification
.
Builder
(
mContext
,
OPP_NOTIFICATION_CHANNEL
).
setOnlyAlertOnce
(
true
)
.
setContentTitle
(
mContext
.
getString
(
R
.
string
.
inbound_noti_title
))
...
...
@@ -538,9 +550,11 @@ class BluetoothOppNotification {
PendingIntent
.
getBroadcast
(
mContext
,
0
,
deleteIntent
,
PendingIntent
.
FLAG_IMMUTABLE
))
.
setWhen
(
timeStamp
)
.
setLocalOnly
(
true
)
.
build
();
mNotificationMgr
.
notify
(
NOTIFICATION_ID_INBOUND_COMPLETE
,
inNoti
);
.
setLocalOnly
(
true
);
if
(
Flags
.
oppFixMultipleNotificationsIssues
())
{
b
.
setGroup
(
NOTIFICATION_GROUP_KEY_TRANSFER_COMPLETE
);
}
mNotificationMgr
.
notify
(
NOTIFICATION_ID_INBOUND_COMPLETE
,
b
.
build
());
}
else
{
if
(
mNotificationMgr
!=
null
)
{
mNotificationMgr
.
cancel
(
NOTIFICATION_ID_INBOUND_COMPLETE
);
...
...
@@ -601,7 +615,7 @@ class BluetoothOppNotification {
PendingIntent
.
FLAG_IMMUTABLE
);
}
Notification
public_n
=
Notification
.
Builder
publicNotificationBuilder
=
new
Notification
.
Builder
(
mContext
,
OPP_NOTIFICATION_CHANNEL
).
setOnlyAlertOnce
(
true
)
.
setOngoing
(
true
)
...
...
@@ -623,9 +637,12 @@ class BluetoothOppNotification {
info
.
mDeviceName
,
fileNameSafe
)))
.
setSubText
(
Formatter
.
formatFileSize
(
mContext
,
info
.
mTotalBytes
))
.
setSmallIcon
(
R
.
drawable
.
bt_incomming_file_notification
)
.
setLocalOnly
(
true
)
.
build
();
Notification
n
=
.
setLocalOnly
(
true
);
if
(
Flags
.
oppFixMultipleNotificationsIssues
())
{
publicNotificationBuilder
.
setGroup
(
NOTIFICATION_GROUP_KEY_INCOMING_FILE_CONFIRM
);
}
Notification
.
Builder
builder
=
new
Notification
.
Builder
(
mContext
,
OPP_NOTIFICATION_CHANNEL
).
setOnlyAlertOnce
(
true
)
.
setOngoing
(
true
)
...
...
@@ -651,9 +668,11 @@ class BluetoothOppNotification {
.
setVisibility
(
Notification
.
VISIBILITY_PRIVATE
)
.
addAction
(
actionDecline
)
.
addAction
(
actionAccept
)
.
setPublicVersion
(
public_n
)
.
build
();
mNotificationMgr
.
notify
(
NOTIFICATION_ID_PROGRESS
,
n
);
.
setPublicVersion
(
publicNotificationBuilder
.
build
());
if
(
Flags
.
oppFixMultipleNotificationsIssues
())
{
builder
.
setGroup
(
NOTIFICATION_GROUP_KEY_INCOMING_FILE_CONFIRM
);
}
mNotificationMgr
.
notify
(
NOTIFICATION_ID_PROGRESS
,
builder
.
build
());
}
cursor
.
close
();
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment