blackberryで起動したアプリケーションの状態を知ることはできますか? たとえば、電子メールを送信した後に blackberry 電子メール アプリケーションを呼び出すと、アプリケーションが終了したか、まだ実行されているか、電子メールの送信先、件名、内容などを知ることができますか? コードは次のようになります。
try {
Message message = new Message();
Address address = new Address("email@yahoo.com", "Email");
Address[] addresses = {address};
message.addRecipients(RecipientType.TO, addresses);
message.setContent("Testing email from MyTabViewDemo application");
message.setSubject("Testing Email");
Invoke.invokeApplication(Invoke.APP_TYPE_MESSAGES, new MessageArguments(message));
log.debug(MyApp.GUID_LOG, "Send email action done!");
} catch (Exception e) {
Dialog.inform(e.toString());
}
電話、SMS、カメラなどの他のアプリケーションの状態を取得するのはどうですか?
ありがとうございました。