Notification.Vibrate = False Not Working

Status
Not open for further replies.

HimeAnator

Member
Licensed User
Longtime User
I'm setting a notifications vibrate setting to false and on my HTC Thunderbolt it works but on my Samsung Stratosphere it does not. It starts vibrating like crazy.

I'm using this code..
B4X:
Dim n As Notification 
n.Initialize
n.Icon = ""
n.Vibrate = False
n.Sound = False
n.Light = False
n.Insistent = False

Is there something I'm missing or another way to fix this?
 

chrjak

Active Member
Licensed User
Longtime User
Maybe you forget the
B4X:
Notification1.Notify(1)
?

You can export as zip and upload the project here. It will help us to help you when we can see the complete code you are using.

Please describe what we need to do to encounter the issue you have (and what issue you have)
:D if you want to read over 20.000 lines of code!
 
Upvote 0

chrjak

Active Member
Licensed User
Longtime User
also ..
B4X:
Notification1.SetInfo("Text" , Main)

should be ..
B4X:
Notification1.SetInfo("Title","Text" , Main)
yep i forgot that. but it doesn't help
still no icon

Edit: OK solved. the pics were too big! Thanks for your help anyway! :)
 
Last edited:
Upvote 0
Status
Not open for further replies.
Top