Timer 和 TimerTask 问题:“Timer.class 不在 android.jar 中”和“应用程序意外停止”?
所以我本质上试图制作一个“实时反馈”,我的代码如下所示。基本上,我收到“应用程序意外停止”错误,所以我进行了调试。当我调试时,它说“Timer.class not in android.jar”。我知道我的refreshFeed()静态方法工作得很好(在没有计时器的情况下进行了测试),所以不可能是这样。我在这里缺少什么吗?非常感谢任何帮助!
Timer time = new Timer();
TimerTask refresh = new TimerTask(){
public void run(){
feedEntry.refreshFeed();
}
};
time.scheduleAtFixedRate(refresh, 0, 10000);
So I'm trying to make a "live feed" essentially, and my code is shown below. Basically, I got "The Application Has Stopped Unexpectedly" error, so I debugged. When I debugged, it said "Timer.class not in android.jar". I know my refreshFeed() static method works perfectly fine (tested it without the timer), so it can't be that. Is there something I'm missing here? Any help is greatly appreciated!
Timer time = new Timer();
TimerTask refresh = new TimerTask(){
public void run(){
feedEntry.refreshFeed();
}
};
time.scheduleAtFixedRate(refresh, 0, 10000);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Timer 和 TimerTask 都存在于 java.util 包中。
您需要做的是使用处理程序。
如果您是 Android 新手,请阅读有关处理程序的信息。
http://developer.android.com/reference/android/os/Handler.html
Both Timer and TimerTask present in java.util package.
What you need to is do is use handler.
Read about handler if you are new to android.
http://developer.android.com/reference/android/os/Handler.html