当应用程序进入后台时,从android设备发送数据到服务器



目前我只能发送数据到服务器当我的应用程序(活动)是在前台。至少在4.1.3中会发生这种情况,因为android SO会暂停应用程序或停止应用程序。

我需要一直发送数据,即使活动在后台。

实现这一目标的最佳方法是什么?Asynctask不是一个很好的答案,因为我想定期发送数据。一次也没有。我已经使用asynctasks作为将数据发送到服务器的一种方式,我需要的是与活动一起运行的东西,但不会被SO停止。

编辑:

我使用下面的代码得到这个错误。

04-03 13:55:28.804: E/AndroidRuntime(1165): java.lang.RuntimeException: Unable to instantiate receiver main.inSituApp.BootCompletedIntentReceiver: java.lang.ClassNotFoundException: main.inSituApp.BootCompletedIntentReceiver

谁能告诉我这个错误是什么意思?我没有这个接收器的类,但我想如果我在清单中注册它,我就不需要它了。

您可以编写servicesAlarmManager来执行此操作。只需在服务中注册您的应用程序并调用alarmMangaer.setRepeat()方法来启动您的服务器端代码或您想在服务的onStart()方法中执行的任何其他操作

public class MyService extends Service{
  Calendar cur_cal = Calendar.getInstance();
  @Override
public void onCreate() {
    // TODO Auto-generated method stub
    super.onCreate();
    Intent intent = new Intent(this, MyService.class);
    PendingIntent pintent = PendingIntent.getService(getApplicationContext(),
            0, intent, 0);
    AlarmManager alarm = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
            cur_cal.setTimeInMillis(System.currentTimeMillis());
    alarm.setRepeating(AlarmManager.RTC_WAKEUP, cur_cal.getTimeInMillis(),
            60 * 1000*3, pintent);
}
@Override
public void onStart(Intent intent, int startId) {
    // TODO Auto-generated method stub
    super.onStart(intent, startId);
          // your code for background process
  }
}

添加到AndroidManifest.xml

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<service
        android:name="com.yourpackage.MyService"
        android:enabled="true" />
  <receiver android:name=".BootCompletedIntentReceiver" >
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED" />
        </intent-filter>
    </receiver>
编辑:

BootCompletedIntentReceiver.java

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
public class BootCompletedIntentReceiver extends BroadcastReceiver {
    @Override
    public void onReceive(Context context, Intent intent) {
        if ("android.intent.action.BOOT_COMPLETED".equals(intent.getAction())) {
            Intent pushIntent = new Intent(context, MyService.class);
            context.startService(pushIntent);
        }
    }
}

相关内容

  • 没有找到相关文章

最新更新