在Android中实施长期持续监控任务的行业首选方式是什么?

时间:2017-03-14 19:43:13

标签: android

就像标题所说,在Android中实施长期持续监控任务的行业首选方式是什么?

例如,有一种方法可以获得细胞信号强度:

public void getData(){
    int cellSignalStrength = 0;
    TelephonyManager telephonyManager = (TelephonyManager)this.getSystemService(Context.TELEPHONY_SERVICE);
    List<CellInfo> cellInfos = telephonyManager.getAllCellInfo();
    for(CellInfo info : cellInfos){
        if(info instanceof CellInfoCdma){
            cellSignalStrength = ((CellInfoCdma) info).getCellSignalStrength().getLevel();
        } else if(info instanceof CellInfoGsm){
            cellSignalStrength = ((CellInfoGsm) info).getCellSignalStrength().getLevel();
        } else if(info instanceof CellInfoLte){
            cellSignalStrength = ((CellInfoLte) info).getCellSignalStrength().getLevel();
        } else if(info instanceof CellInfoWcdma){
            cellSignalStrength = ((CellInfoWcdma) info).getCellSignalStrength().getLevel();
        }
    }
}

显然,我想不断监视这一点。使用Timer TimerTask&#34;最佳&#34;,行业首选的方式来持续监控此事?

Timer timer = new Timer();
timer.schedule(new TimerTask() {
    @Override
    public void run() {
        getData();
    }
}, 100);

或者,还有其他一些更好的方法,例如Android服务中的while(true)循环吗?

谢谢!

1 个答案:

答案 0 :(得分:0)

这取决于您对数据的计划用途。

如果您的主要(如果不是唯一的)数据用例是更新您的UI,并且工作本身便宜(<1ms来处理),最便宜的用途是postDelayed()

/***
  Copyright (c) 2012 CommonsWare, LLC
  Licensed under the Apache License, Version 2.0 (the "License"); you may not
  use this file except in compliance with the License. You may obtain a copy
  of the License at http://www.apache.org/licenses/LICENSE-2.0. Unless required
  by applicable law or agreed to in writing, software distributed under the
  License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
  OF ANY KIND, either express or implied. See the License for the specific
  language governing permissions and limitations under the License.

  Covered in detail in the book _The Busy Coder's Guide to Android Development_
    https://commonsware.com/Android
 */

package com.commonsware.android.post;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Toast;

public class PostDelayedDemo extends Activity implements Runnable {
  private static final int PERIOD=5000;
  private View root=null;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    root=findViewById(android.R.id.content);
  }

  @Override
  public void onStart() {
    super.onStart();

    run();
  }

  @Override
  public void onStop() {
    root.removeCallbacks(this);

    super.onStop();
  }

  @Override
  public void run() {
    Toast.makeText(PostDelayedDemo.this, "Who-hoo!", Toast.LENGTH_SHORT)
         .show();
    root.postDelayed(this, PERIOD);
  }
}

在这里,我只是每五秒钟显示一次Toast,但您可以更新Runnable中的时段和工作,以完成您需要的工作。

使用postDelayed()可以避免创建任何后台线程,并且必须处理线程间通信回到主应用程序线程以更新UI。

如果您的工作将更加昂贵(例如,磁盘I / O,网络I / O),您可以使用TimerTask,但我更喜欢ScheduledExecutorService(在1.4左右添加到Java,更灵活)。

但是,如果您只需要在活动处于前台时继续进行此处理,则不应该需要Android服务。服务适用于即使用户离开用户界面并转到其他应用程序也需要完成的工作。