为什么这个处理程序(runnable)如果在服务上启动它会减慢我的应用程序?

时间:2011-06-02 09:04:24

标签: android handler runnable

我正在使用后台服务,它正在检索数据并在远程服务器上插入数据。好吧,我把它放在后台服务上,因为我想在后台完成这项工作而不会减慢我的应用程序,但它会减慢我的应用程序!

正如你将在代码中看到的,它有60秒的睡眠,我的应用程序每60秒冻结2/3秒,这是代码,我相信,但我不知道如何解决它

public class MyService extends Service implements Runnable{
    boolean serviceStopped;
    RemoteConnection con; //conexion remota
    List <Position> positions;
static SharedPreferences settings;
static SharedPreferences.Editor configEditor;
    private Handler mHandler;
    private Runnable updateRunnable = new Runnable() {
        @Override public void run() {
            //contenido
            if (serviceStopped==false)
            {
                positions=con.RetrievePositions(settings.getString("login","")); //traigo todas las posiciones
                if (positions.size()>=10) //si hay 10 borro la mas vieja
                    con.deletePosition(positions.get(0).getIdposition());
                if (settings.getString("mylatitude", null)!=null && settings.getString("mylongitude", null)!=null)
                    con.insertPosition(settings.getString("mylatitude", null),settings.getString("mylongitude", null), formatDate(new Date()), settings.getString("login",""));
            }
            queueRunnable();//duerme
        }
    };
    private void queueRunnable() {
        //mHandler.postDelayed(updateRunnable, 60000); //envia una posicion al servidor cada minuto (60.000 milisegundos es un minuto)
        mHandler.postDelayed(updateRunnable, 60000);
    }

    public void onCreate() {
        serviceStopped=false;
settings = PreferenceManager.getDefaultSharedPreferences(this.getApplicationContext());
        configEditor = settings.edit();
        positions=new ArrayList<Position>();
        con = new RemoteConnection();
            mHandler = new Handler();
            queueRunnable();
        }

1 个答案:

答案 0 :(得分:2)

即使您创建了服务,也不意味着它将在单独的线程上运行。看看http://developer.android.com/reference/android/app/Service.html

  

请注意,服务与其他应用程序对象一样,在其托管进程的主线程中运行。这意味着,如果您的服务要进行任何CPU密集型(例如MP3播放)或阻止(例如网络)操作,它应该生成自己的线程来执行该工作。有关此内容的更多信息,请参见进程和线程。 IntentService类可用作Service的标准实现,它具有自己的线程,用于调度其工作。

请花一些时间阅读服务在Android http://developer.android.com/guide/topics/fundamentals/services.html

中的实际运作方式

因此,IntentService和预定警报可以作为解决方案。