2013-02-14 78 views
1

我有一个按钮,当按下时,启动服务。该服务开始从设备记录信息。然而,当我按下跑步时,屏幕会在记录时暂时冻结约8秒,然后一旦完成屏幕解冻,吐司消息就会显示(只要您按下按钮就会显示),然后我可以做任何事情。如果我再次进入应用程序屏幕,应用程序正在进行日志记录(注意:服务始终在运行,因此不会冻结它,只是日志记录),那么活动会再次冻结,并且在日志记录完成之前不会执行任何操作。运行服务时活动冻结

我已经尝试了asynctasks并在新的runnable/new线程上运行,但是这些都没有为我工作。无论我是否正确实施它们,我都不确定,但我想解决这个问题。

这是我在服务类onStartCommand:

@Override 
public int onStartCommand(Intent intent, int flags, int startId) { 
    // THIS WOULD BE THE METHOD THAT RUNS WHATEVER YOU WANT TO DO EVERY SO OFTEN SO FOR ME THIS IS GETTING ALL DATA ETC 
    getProcessInfo(); 

    // LOG DELAY = SECONDS BETWEEN RUNNING SERVICE/METHOD. SET AT THE TOP 
    myPendingIntent = PendingIntent.getService(this, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT); 
    Alarmmgr.set(AlarmManager.RTC_WAKEUP, System.currentTimeMillis()+LOG_DELAY*1000, myPendingIntent); 
    Intent notificationIntent = new Intent(this, LogOrCheck.class); 
    PendingIntent contentIntent = PendingIntent.getActivity(this, 
      101, notificationIntent, 
      PendingIntent.FLAG_NO_CREATE); 

    NotificationManager nm = (NotificationManager) this 
      .getSystemService(Context.NOTIFICATION_SERVICE); 

    Resources res = this.getResources(); 
    Notification.Builder builder = new Notification.Builder(this); 

    builder.setContentIntent(contentIntent) 
       .setSmallIcon(R.drawable.arrow_up_float) 
       .setLargeIcon(BitmapFactory.decodeResource(getResources(), R.drawable.arrow_down_float)) 
       .setWhen(System.currentTimeMillis()) 
       .setAutoCancel(true) 
       .setContentTitle("Androigenius") 
       .setContentText("Service running OK"); 
    Notification n = builder.getNotification(); 


    startForeground(100, n); 
    return Service.START_STICKY; 
} 

而这里就是我所说的startService:

but1.setOnClickListener(new View.OnClickListener() { 
     public void onClick(View v) { 

      if (isClicked) { 
       Context context = getApplicationContext(); 
       Toast toast = Toast.makeText(context, "Please press 'MINIMIZE' at the top to continue logging.", Toast.LENGTH_LONG); 
       toast.setGravity(Gravity.TOP|Gravity.RIGHT, 10, 55); 
       toast.show(); 
       System.out.println("Start logging"); 
       but1.setText("Stop Logging"); 
       but1.setTextColor(Color.RED); 
       // START SERVICE, DONE. (STOP IS BELOW). 
       startService(myIntent); 
       isClicked = false; 
      } 
      else if (!isClicked) { 
       System.out.println("Stop Logging"); 
       but1.setText("Start Logging"); 
       // STOP SERVICE, DONE. 
       stopService(myIntent); 
       but1.setTextColor(getResources().getColor(color.cornblue)); 
       isClicked = true; 
      } 
+0

我有同样的问题.. 嗯,我明白意图服务于一个单独的线程运行,但我的UI依然凝固起来。我在意图服务上做了一个很长的数据库操作,我不明白为什么它会在完全不同的线程上运行。 – Guru 2013-09-12 14:14:57

回答

0

默认情况下,该服务也在你的应用程序了主线程中运行,在其中您的UI操作发生。因此,如果您在onStartCommand()方法中执行长任务,则会阻塞主线程。

为避免此问题,您必须将日志记录任务迁移到单独的线程中。你可以使用AsycTask类来做到这一点。请参阅http://developer.android.com/reference/android/os/AsyncTask.html了解如何使用该课程。

1

服务在导致'冻结'的UI线程上运行。使用IntentService将创建一个自动在后台运行的服务,而不是在UI线程上运行。这里是IntentService类的一些细节:

IntentService Class