すべて..私はアンドロイドに不慣れです。残りのアラーム付きのカレンダーを作成しようとしています。コーディングして正常に動作するものはすべてありますが、「アラームイベント」はLogCatでsystem.out.printとしてのみ機能しますが、AndroidエミュレーターGUIでは表示できません。スレッドを使用して、wakeUpでこのアラーム機能を作成します。このスレッドでは、GUIにアラートボックスを表示したいと思います。ここにコードを添付しました。スレッド中にメッセージを表示する方法を教えてもらえますか?
コーディング:
public void run() {
for (;;) {
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyyMMddHHmm");
Calendar cal = Calendar.getInstance();
stime = dateFormat.format(cal.getTime());
arrCRInt = Long.parseLong(stime);
try {
i = 0;
c = db1.rawQuery("SELECT * FROM " + CRA, null);
if (c != null) {
if (c.moveToFirst()) {
do {
dbdatetime = c.getString(c.getColumnIndex("rdatetime"));
arrDBInt = Long.parseLong(dbdatetime);
remName = c.getString(c.getColumnIndex("rname"));
rem_id = c.getString(c.getColumnIndex("reminder_id"));
alertId=c.getString(c.getColumnIndex("alert"));
if (arrDBInt < arrCRInt) {
if(alertId.equals("TRUE"))
{
///////////////////// Passing Alert Message to Android Emulator GUI
db1.execSQL("UPDATE "+CRA+" SET "+ALERT+"='FALSE' WHERE reminder_id = " + rem_id );
}
db1.execSQL("UPDATE "+CRA+" SET "+STATUS+"='TRUE' WHERE "+CRDATETIME+"<"+arrCRInt +" and reminder_id = " + rem_id );
}
if (arrDBInt == arrCRInt) {
///////////////////// Passing Alert Message to Android Emulator GUI
System.out.println("ALERTED AS: You Have " + remName + " Remainder as on this Time");
db1.execSQL("UPDATE "+CRA+" SET "+ALERT+"='FALSE' WHERE "+CRDATETIME+"="+arrCRInt +" and reminder_id = " + rem_id );
}
if(arrDBInt>arrCRInt)
{
///////////////////// Passing Alert Message to Android Emulator GUI
/////////////////////ここではアラートボックス、メッセージボックス、トーストなどすべてが機能しません
}
} while (c.moveToNext());
}
}
Thread.sleep(10000);
} catch (Exception e) {
}
}
}