吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 955|回复: 1
收起左侧

[求助] 关于timertask的只执行一次的问题

[复制链接]
zihang.wang 发表于 2020-12-2 22:20
我在安卓apk服务中设置了timer.schedule(task, 0, 3000);每三秒执行一次,但是却只执行一次;求助一下大佬;
附上源码:
package com.example.liveon;

import android.app.ActivityManager;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.icu.util.LocaleData;
import android.os.Handler;
import android.os.IBinder;
import android.os.Looper;
import android.util.Log;
import android.view.MotionEvent;
import android.widget.Toast;

import java.lang.reflect.Field;
import java.util.List;
import java.util.Timer;
import java.util.TimerTask;

public class MyService extends Service {
    final TimerTask task = new TimerTask() {
        @Override
        public void run() {
            Log.d("toast", "toast");
            timer.cancel();
        }
    };
     final Timer timer = new Timer();
    public MyService() {
        Log.d("ccc","cccc");
        timer.schedule(task, 0, 30);
        new Thread(new Runnable() {
            @Override
            public void run() {

            }
        }).start();
        final Handler handlerThree=new Handler(Looper.getMainLooper());
        handlerThree.post(new Runnable(){
            public void run(){
                if (1>0) {
                    //timer.schedule(task, 0, 3000);
                }
            }
        });
    }
    @Override
    public IBinder onBind(Intent intent) {
        // TODO: Return the communication channel to the service.
        throw new UnsupportedOperationException("Not yet implemented");
    }
}

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

 楼主| zihang.wang 发表于 2020-12-2 22:27
最终发现,在我的代码中,使用完timertask之后我把它关闭了,导致没办法继续执行任务;
关闭代码:timer.cancel();
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-26 10:04

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表