- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 Intent 服务,我将数据库 ID 传递给该服务。然后该服务从数据库中获取相关行。然后它使用 volley 将此数据发送到 Web 服务器。
Handle Intent 方法检查互联网连接,如果没有找到,则在再次检查之前让线程休眠。这感觉很不对劲,但我确实需要服务来等待互联网。
我还需要服务按照填充顺序处理工作队列。
这是当前代码。有没有更好的方法来处理这种情况?
public class CommandUploadService extends IntentService {
// Binder given to clients
private final IBinder mBinder = new LocalBinder();
private ServiceCallbacks serviceCallbacks;
public void setCallbacks(ServiceCallbacks callbacks) {
serviceCallbacks = callbacks;
}
/**
* Class used for the client Binder. Because we know this service always
* runs in the same process as its clients, we don't need to deal with IPC.
*/
public class LocalBinder extends Binder {
public CommandUploadService getService() {
// Return this instance of LocalService so clients can call public methods
return CommandUploadService.this;
}
}
// TODO: Rename actions, choose action names that describe tasks that this
// IntentService can perform, e.g. ACTION_FETCH_NEW_ITEMS
private static final String ACTION_UPLOAD_COMMAND = "com.brandfour.tooltracker.services.action.UPLOAD_COMMAND";
// TODO: Rename parameters
private static final String ID = "com.brandfour.tooltracker.services.id";
/**
* Starts this service to perform action Foo with the given parameters. If
* the service is already performing a task this action will be queued.
*
* @see IntentService
*/
// TODO: Customize helper method
public static void startActionUploadCommand(Context context, String actionID) {
Intent intent = new Intent(context, CommandUploadService.class);
intent.setAction(ACTION_UPLOAD_COMMAND);
intent.putExtra(ID, actionID);
context.startService(intent);
}
/**
* Unless you provide binding for your service, you don't need to implement this
* method, because the default implementation returns null.
*
* @param intent
* @see Service#onBind
*/
@Override
public IBinder onBind(Intent intent) {
return mBinder;
}
public CommandUploadService() {
super("CommandUploadService");
}
@Override
protected void onHandleIntent(Intent intent) {
if (intent != null) {
final String action = intent.getAction();
if (ACTION_UPLOAD_COMMAND.equals(action)) {
final String id = intent.getStringExtra(ID);
handleActionUpload(id);
}
}
}
/**
* Handle action Foo in the provided background thread with the provided
* parameters.
*/
private void handleActionUpload(String actionID) {
final ActionCommand ac = new RushSearch().whereId(actionID).findSingle(ActionCommand.class);
serviceCallbacks.refreshList();
ConnectionManager manager = new ConnectionManager();
Boolean connected = manager.isNetworkOnline(this);
while (connected == false) {
connected = manager.isNetworkOnline(this);
SystemClock.sleep(10000);
}
JSONObject json = new JSONObject();
JSONObject wrapper = new JSONObject();
try {
json.put("Command", ac.getCommand());
json.put("TimeStamp", ac.getTimeStamp());
json.put("State", ac.getState());
wrapper.put("command", json);
} catch (Exception e) {
}
String url = "[ommitted]";
JsonObjectRequest jsonObjReq = new JsonObjectRequest(Request.Method.POST,
url, wrapper,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
ac.setState("SENT");
ac.save();
serviceCallbacks.complete();
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
VolleyLog.d("BRANDFOUR", "Error: " + error.getMessage());
}
}) {
@Override
public String getBodyContentType() {
return "application/json; charset=utf-8";
}
};
// Adding request to request queue
RequestQueue queue = Volley.newRequestQueue(this);
queue.add(jsonObjReq);
}
public interface ServiceCallbacks {
void complete();
void refreshList();
}
最佳答案
如果请求的顺序不重要,我会简单地取消请求并重新启动相同的 IntentService
作为 onHandleIntent
的一部分。像这样:
protected void onHandleIntent(Intent intent) {
// ... Code to get the actionID ...
Boolean connected = manager.isNetworkOnline(this);
if (!connected) {
this.startService(intent);
return;
}
// .. connected to internet, run code that fires the request ...
}
但是,这种方法会导致由于连接问题而无法处理的当前请求被放置在工作队列的末尾,并且您声明这破坏了您的逻辑。
这种方法的另一个问题是,您会不断重启服务,直到互联网连接恢复,这可能会耗尽电池电量。
现在,一个不同的解决方案可能是放弃您的 IntentService
并改为创建一个常规的 Service
。让我们将此服务命名为 UploadService
。 UploadService
应该启动(以保持其运行)但也使用服务绑定(bind)(用于通信目的)。
UploadService
应该管理一个内部工作队列,以确保您的请求以正确的顺序处理。您应该公开一种方法,通过您的 IBinder
实现对请求进行排队。
UploadService
的主要功能应该是获取(但不删除!- 使用 peek()
)队列前端的方法。让我们将此方法命名为 handleRequest
。如果队列为空,您应该关闭 UploadService
。如果队列不为空,您应该生成一个 AsyncTask
来处理放在队列前端的请求。如果请求被成功处理,您将在 onPostExecute
期间移除队列的前端,并重新调用 handleRequest
以检查是否有其他请求排队。如果请求失败 - 很可能是由于互联网连接丢失 - 您不要在 onPostExecute
期间删除前面的元素。相反,您检查互联网连接是否已丢失。如果情况确实如此,您可以注册一个 BroadcastReceiver
来监听 Internet 连接。此 BroadcastReceiver
应在再次建立互联网连接以恢复处理请求时调用 handleRequest
。
上述方法的伪代码实现看起来像这样:
public class UploadService extends Service {
private final BroadtcastReceiver mReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
if (ConnectivityManager.CONNECTIVITY_ACTION.equals(intent.getAction()) {
boolean connected;
// Use extras to verify that connection has been re-established...
if (connected) {
// Unregister until we lose network connectivity again.
UploadService.this.unregisterReceiver(this);
// Resume handling requests.
UploadService.this.handleRequest();
}
}
}
};
private final Queue<RequestData> mRequestQueue = new XXXQueue<RequestData>(); // Choose Queue implementation.
private final UploadServiceBinder mBinder = new UploadServiceBinder();
public class UploadServiceBinder extends Binder {
public void enqueueRequest(RequestData requestData) {
UploadService.this.mRequestQueue.offer(requestData);
}
}
@Override
public IBinder onBind(Intent intent) {
return mBinder;
}
private void handleRequest() {
RequestData request = mRequestsQueue.peek();
if (request == null) {
// No more requests to process.
// Shutdown self.
stopSelf();
} else {
// Process the request at the head of the queue.
new Request().execute(request);
}
}
private class Request extends AsyncTask<RequestData, Void, Boolean> {
@Override
protected void doInBackground(RequestData... requests) {
try {
// ... Code that executes the web request ...
// Return true if request succeeds.
return true;
} catch(IOException ioe) {
// Request failed, return false.
return false;
}
}
@Override
protected void onPostExecute(Boolean success) {
if (success) {
// Remove request from work queue.
UploadService.this.mRequestQueue.remove();
// Continue by processing next request.
UploadService.this.handleRequest();
} else {
// Request failed, properly due to network error.
// Keep request at the head of the queue, i.e. do not remove it from the queue.
// Check current internet connectivity
ConnectionManager manager = new ConnectionManager();
boolean connected = manager.isNetworkOnline(UploadService.this);
if (connected) {
// If connected, something else went wrong.
// Retry request right away.
UploadService.this.handleRequest();
} else {
// Lack of internet.
// Register receiver in order to resume processing requests once internet connectivity is restored.
IntentFilter filter = new IntentFilter(ConnectivityManager.CONNECTIVITY_ACTION);
UploadService.this.registerReceiver(UploadService.this.mReceiver, filter);
}
}
}
}
}
关于没有互联网连接时暂停的 Android Intent 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32243859/
如果我想为收藏创建一个 Intent 。 如果用户问“他最喜欢什么”,它会显示一些建议芯片 因此它会调用与该芯片相关的任何后续 Intent 。 最喜欢的饮料 最喜欢的食物 最喜欢的电影等 我还想直接
我确信有一些显而易见的事情,但还没有找到解决这个简单问题的方法。错误是在用户猜出正确答案时尝试启动另一个 Activity 的主要 Activity : Error:(85, 23) Unresolv
public class MainActivity extends Activity { Button b; //FrameLayout fl; @Override p
我对 intentService 有点困惑。文档说,如果您向 intentService 发送多个任务( Intent ),那么它将在一个单独的线程上一个接一个地执行它们。我的问题是 - 是否可以同时
我正在尝试从其他应用程序获取 mime 类型 text/plain 的 Intent 并将该文本存储在字符串类型的变量中。它在 onCreate 方法中工作正常,但是当我使用 singleTask 作
我想知道,2个代码有什么区别? newIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP);
如何设置我的 Activity 以响应任何类型的共享 Intent 。 我试过:- 但是这不起作用,我已经阅读了http://developer.android.co
鉴于子类具有不同的上下文以及在单击监听器后启动的不同 Activity ,父类(super class)中的代码 Intent Intent=new Intent(context,Activity.c
更新#1:更多信息添加到这篇文章的末尾 我是 Android 开发和测试的新手。 我有 3 个 Espresso 测试。第一个测试通过,但第二个不会运行,因为在第二个测试之前调用 setUp() 方法
我是 Espresso UI 测试的新手。 我在运行测试时遇到这个错误(ADT Eclipse IDE)。 该应用程序已经开发完成,并且在启动该应用程序时有很多请求正在进行。无法重写应用程序。但我需要
因此,尝试创建一个我认为是基本简历应用程序的应用程序。我有两个类(class),都有同样的问题。它说它“无法解析符号 Intent ” 谷歌部分做了,但没有任何意义.. 这是我的代码。 MainAct
我正在尝试将 user_id 值从一个 Intent 传递到另一个 Intent。我知道这是一个非常简单的过程,而且我已经这样做了好几次了。但对于下面的代码,我有点困惑。 我需要将 user_id 值
这是我将值传递给名为 choice 的类的主要 Activity 。 @Override public void onClick(View v) { // TODO Auto-generated me
我正在寻找一个 Android Intent 来翻译文本,我发现了这个: Google Translate Activity not working anymore 但我想在任务管理器中使用它。我真的
可以设置多个启动 Intent ,例如,当用户点击通知时。 让我解释一下我的具体问题: 我有一个带通知的应用程序。每个通知都会打开一个不同的 Activity (也有不同的附加功能)。 现在我想提取有
我有一个 Intent launchIntent = packageManagerForListener.getLaunchIntentForPackage(packagesForAdapter[po
List targetedShareIntents = new ArrayList(); Intent shareIntent = new Intent(android.content.Intent.
所以我试图在选择列表中的项目后启动一个新 Activity ......根据我所读的内容非常基本。我也在尝试在附加功能中发送一个值。所以我可以选择列表中的项目,然后新 Activity 开始,extr
有没有一种方法可以将一个Intent bundle 从一个 Intent 传递到另一个 Intent ,而不必提取包并单独处理每个额外的 Intent ? 例子: intent2.setExtras(
这个问题在这里已经有了答案: Android 5.0 (L) Service Intent must be explicit in Google analytics (11 个答案) 关闭 6 个月
我是一名优秀的程序员,十分优秀!