好的,所以在我的程序中,我有一些东西,当数据库 KEY_TITLE 为空时,它会说某件事,直到用户进入主菜单做某事。我的问题是如何检查它是否不再为空并继续执行该程序?这是代码的一部分。
@Override
public void onClick(View v) {
insert.setText("");
text.setText(" Try it out! Go to the main menu and schedule a task!");
respond.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
mDbHelper2.fetchAllReminder();
if(TaskDbAdapter.KEY_BODY.isEmpty() ){
text.setText("Go and Schedule a task to continue =)!");
}else{
String task = new String(TaskDbAdapter.KEY_TITLE);
insert.setText("");
text.setText("text");
}
这是我的代码...一旦用户安排任务并返回活动并再次单击按钮,我无法检查 KEY_TITLE 并执行其他操作。