Is there any way to delete incoming message like Android is doing?.Please give any solution to delete incoming message on MessageListner.
Thanks,
BlackBerry SDK API does not contain functionality to delete SMS from the device.
Have you tried this: Intercept incoming SMS ?
It explains how to receive messages and prevent them from going to inbox
Related
I know i can't access the sms database of a ios device, but there's no workaround to achieve the same task using other tools?
My app must send an sms (which i do presenting the regular view of the ui message framework and asking the user to send it) and then receive a reply sms.
There's no way to receive this sms? There are online service or whatever can help me to do this?
No, the situation has not changed in recent years: there is no way to read any SMS (except if you're on a jailbroken device).
But one thing you can do is embed an URL in your reply SMS that the user needs to tap. You can then use an URL handler in your app to handle these. Like:
myapp://smsreceived?id=123&result=456
There's plenty of documentation on how to implement URL handlers.
I am working on a sms application, in which i have used folder listener to access the Inbox sms.
I want to read all the sms present in the inbox at a time. Is it possible to do this, because what i have done is to read incoming sms.
When a sms added in the Inbox folder we can catch that event but here I want ot read all the sms from Inbox.
Please suggest me the solution or some fruity sample code.
Thanxsss a ton in advance...!
There is no way to read already received sms-messages. The only way is to implement MessageListener and intercept incoming sms-messages to process them.
I can't find any reference/documentation how to get a list of SMS messages using WebWorks (for smartphone)? Is it possible?
I want to create my own app using WebWorks, im trying to find a way to get a list of SMS messages.
Sorry for late reply.
It's not possible to get list of sms even in native java application. You can only listen for incoming sms. But not sms that already received.
I want to read SMS messages from Inbox,Draft,and sent from my blackberry device programmatically.
Would any one will help me.
There is only way to access SMS messages, implement MessageListener and intercept messages when they are sending/receiving. There is no API to access SMS messages already saved in device memory (i.e already received).
See the BlackBerry Developers Knowledge Base article:
What is - Different ways to listen for SMS messages
Can anyone please help me .... I need the full code.
Folder containing inbox ... and i need to count the unread sms there.
Seems like it's not possible.
How to Read SMS inbox (Not for mail messages):
This is not possible under the current api, you can access them before they hit the sms >inbox but you cant read back into the inbox
...
There is no way to access SMS once they hit the inbox.
Access all SMS in my inbox through API:
sms: no
mails: yes. take a look at the developer guide for details
...
you can not access any stored sms programatically.
you can intercept incoming sms, but that's it.
it is possible to read them from a backup file on your pc though.
Accessing SMS folders viz Inbox,Drafts etc:
This is not supported on BlackBerry. You can capture messages as they arrive, but can not >access SMS messages stored on the BlackBerry.
Mark Sohm
BlackBerry Development Advisor
www.BlackBerryDeveloper.com
...
It is not possible to programmatically access SMS folders. SMS messages can only be >captured as they arrive.
Mark Sohm
BlackBerry Development Advisor
www.BlackBerryDeveloper.com
All we can do is handle incoming SMS