实际上我正在开发一个应用程序...在我的应用程序中我正在尝试开发屏幕锁定n解锁应用程序功能.. 所以请帮我开发它......
提前致谢 -
答案 0 :(得分:0)
您可以使用 Handler.postDelayed()方法执行此操作。只需单击该按钮即可调用处理程序。 请参阅以下代码:
mHandler.postDelayed(new Runnable() { // mHandler is the instance of the Handler class
@Override
public void run() {
// TODO Auto-generated method stub
//Perform your action //here
}
},1000L); //time in milisecond here
希望这会对你有所帮助。