1.点击按钮主动退出微信小程序(后台也退出)
2.满足条件触发主动退出微信小程序事件(后台也退出)
方法1:----------按钮退出
方法2:---------函数退出
通过在函数内部调用微信提供的API实现退出小程序
具体演示代码如下:/**********************************************************************************************************************************************************/package untitled14import java.util.*import java.io.*/*** This application is used to demo how to hook the event of an application*/public class Untitled1 {public Untitled1() {doShutDownWork()}/**************************************************************************** This is the right work that will do before the system shutdown* 这里为了演示,为应用程序的退出增加了一个事件处理,* 当应用程序退出时候,将程序退出的日期写入 d:\t.log文件**************************************************************************/private void doShutDownWork() {Runtime.getRuntime().addShutdownHook(new Thread() {public void run() {try {FileWriter fw = new FileWriter("d:\\t.log")System.out.println("I'm going to end")fw.write("the application ended! " + (new Date()).toString())fw.close()}catch (IOException ex) {}}})}/***************************************************** 这是程序的入口,仅为演示,方法中的代码无关紧要***************************************************/欢迎分享,转载请注明来源:内存溢出
评论列表(0条)