我的应用程序中有一个数据库,我在其中存储类似提醒的内容。其中一列是一个字符串表示时间,提醒应该被“提醒”,如下所示:hh:mm。我在主要活动中创建了一个Thread,以定期监视所有提醒,并检查是否有时间设置警报。在我爬这个线程之前,我将所有数据库行的时间+ ID加载到一个ArrayList中,我在我的线程中使用这个ArrayList而不是数据库本身(我有一些问题)。无论如何,这是代码:
首先,我使用Application类声明全局变量:
public class MyApplication extends Application {
public ArrayList<String> reminders = new ArrayList<String>();
public int hour;
public int minute;
}
在我的主要活动中:
public class Home extends Activity {
ArrayList<String> reminders;
String time:
int hour;
int minute;
@Override
public void onCreate(Bundle savedInstanceState) {
//The usual code at the beginning of onCreate method
//I load my global variables
MyApplication appState = ((MyApplication)getApplicationContext());
reminders = appState.reminders;
hour = appState.hour;
minute = appState.minute;
//I save curren time into global variables
Calendar c = Calendar.getInstance();
hour = c.get(Calendar.HOUR);
minute = c.get(Calendar.MINUTE);
//I loop over all rows of database and save what I need from them into
//Strings in ArrayList reminders. I do this only once on Application
//launch to load already existing rows. When the application runs
//I can always add or remove existing rows using special Activity
//I create and start my Thread
Thread t = new Thread() {
try {
while (true) {
time = hour + ":" + minute;
if (reminders.size() > 0) {
for (int i = 0; i < reminders.size(); i++) {
if (reminders.get(i).contains(time)) {
//One of the Strings in ArrayList reminders
//contains String representation of current
//time (along with the ID of database row).
//Here I will probably be starting a new
//Activity
}
}
}
minute++;
if (minute == 60) {
minute = 0;
hour++;
}
if (hour == 24) {
hour = 0;
}
sleep(1000);
}
} catch (InterruptedException e) {
e.printStackTrace();
}
}
t.start();
}
}
它似乎工作正常,但我真的很不舒服这个解决方案。我的第一个问题是,是否有任何方法可以改进此代码?我可以在Thread本身创建我的变量int hour,int minute和ArrayList提醒,而不是在Thread循环序列之前加载提醒内容吗?这样我就不必使用Application类来存储变量,但我需要它们是全局的,即使我在应用程序中启动新的Activity并且需要正确存储这些变量,Thread也需要运行。
我的第二个问题是,如果有一些完全不同的方法可以解决这个问题。
非常感谢!
我想在我的问题中添加一些内容。因为我会使用AlarmManager,所以我需要在一个以上的活动中设置重复事件。所以我的问题是,我应该在每个Activity中使用不同的AlarmManager实例来添加或删除事件,还是应该使用将被声明为globaly的相同实例?感谢。
答案 0 :(得分:3)
AlarmManager是定期执行任务的更好选择,例如检查表格中的提醒&#34;并在必要时提醒用户。原因是当CPU进入休眠状态时线程不会运行。如果你想让你的线程保持清醒,那么你需要一个WakeLock,这会耗费大量的电力。 AlarmManager对此进行了优化。
其次,你不需要任何全局变量。所以请不要扩展应用程序。这不是必需的。