ブラックベリーのスレッドを殺す方法。ダイアログがポップアップしたときにスレッドを強制終了したい以下のコードを使用しています。最初のログインが失敗したときは正しく機能していますが、2回目のログインが失敗したときはRunTimeExceptionを返します。
public void onAuthFailed(String message) {
//this.invokeAndWait(new NotifyDialog("Please enter correct username and password"));
UiApplication.getUiApplication().invokeLater(new Runnable(){
public void run(){
Dialog.alert("Please enter correct username and password.");
UiApplication.getUiApplication().pushScreen(loginscreen);
}
});
}