Welcome!

Welcome to the Official BlackBerry Support Community Forums. This is your resource to discuss support topics with your peers, and learn from each other. New to the forum? Please visit the ‘Getting Started’ link below.
inside custom component

Java Development

Reply
Contributor
gayatri
Posts: 47
Registered: ‎12-06-2012
My Carrier: Blackberry store

not able to fill programmatically SMS body text on default SMS Composer Screen?

Hello friends 

I am using defalut sms composer screen in my application where i m filling  mobile number and message text  programmatically through this code -

 

 

try {
conn = (MessageConnection) Connector.open("sms://+919876543210");
textMsg = (TextMessage) conn.newMessage(MessageConnection.TEXT_MESSAGE);
textMsg.setAddress("sms://+919876543210");
textMsg.setPayloadText("Text Message");
msgArgs = new MessageArguments(textMsg);

Invoke.invokeApplication(Invoke.APP_TYPE_MESSAGES, msgArgs);
} catch (IOException e) {
Dialog.alert("Exception: " + e);
}


but in blackberry version 5.0 i m not able to fill message text in composer screen.

Can any one help me out  it's urgent ?

 

 

Please use plain text.
Developer
simon_hain
Posts: 13,771
Registered: ‎07-29-2008
My Carrier: O2 Germany

Re: not able to fill programmatically SMS body text on default SMS Composer Screen?

as far as i know this is a long know issue without any workaround.
you can create your own composer screen and send the message directly.
----------------------------------------------------------
feel free to press the like button on the right side to thank the user that helped you.
please mark posts as solved if you found a solution.
@SimonHain on twitter
Please use plain text.
Contributor
gayatri
Posts: 47
Registered: ‎12-06-2012
My Carrier: Blackberry store

Re: not able to fill programmatically SMS body text on default SMS Composer Screen?

any other way to open device composer screen ? 

Please use plain text.
Developer
simon_hain
Posts: 13,771
Registered: ‎07-29-2008
My Carrier: O2 Germany

Re: not able to fill programmatically SMS body text on default SMS Composer Screen?

you can open the composer screen without any text.
or you can write your own.
----------------------------------------------------------
feel free to press the like button on the right side to thank the user that helped you.
please mark posts as solved if you found a solution.
@SimonHain on twitter
Please use plain text.