BroadcastReciever - 无法获取更改背景的按钮

时间:2016-03-17 17:15:26

标签: android android-broadcastreceiver localbroadcastmanager

我有活动和服务。

在我的活动中,一个按钮与服务交互以启动/停止GPS记录。

我的服务有3个州指标:一个用于连接到Google Play服务,一个用于主动记录GPS,另一个用于处理记录的内容。

连接到Google Play服务时,服务流程如下:

准备好 - >记录 - >处理 - >就绪

该服务将按如下方式广播这些州:

private void UpdateStatusBroadcast() {
    //Save status variables to intent
    Intent intent = new Intent(this.getString(R.string.BroadcastStatusIntent));
    intent.putExtra(getString(R.string.BroadcastIsConnected), mIsConnected);
    intent.putExtra(getString(R.string.BroadcastIsTripActive), mIsTripActive);
    intent.putExtra(getString(R.string.BroadcastIsProcessing), mIsProcessing);

    //Send the broadcast
    LocalBroadcastManager.getInstance(this).sendBroadcast(intent);
}

我的活动收到如下状态:

private class StatusReceiver extends BroadcastReceiver {
    @Override
    public void onReceive(Context context, Intent intent) {
        mIsConnected = intent.getBooleanExtra(getString(R.string.BroadcastIsConnected), false);
        mIsTripActive = intent.getBooleanExtra(getString(R.string.BroadcastIsTripActive), false);
        mIsProcessing = intent.getBooleanExtra(getString(R.string.BroadcastIsProcessing), false);

        HandleConnectionStatus();
        HandleTripStatus();
    }
}

然后是我的问题。在下面发布的HandleTripStatus()中,我更改了按钮的文本和背景,以反映服务当前正在执行的操作。这适用于第一种和第三种情况。尽管收到了正确的布尔值,我仍然没有看到第二个背景画出来。

private void HandleTripStatus() {
    Button tripButton = (Button) findViewById(R.id.TripButton);
    Button liveMapButton = (Button) findViewById(R.id.LiveMapButton);

    if (mIsTripActive) {
        tripButton.setText(R.string.TripButtonTitleStop);
        tripButton.setBackground(ContextCompat.getDrawable(mContext, R.drawable.trip_button_stop_shape));
        liveMapButton.setEnabled(true);
    } else if (mIsProcessing) {
        tripButton.setText(R.string.TripButtonTitleStopping);
        tripButton.setBackground(ContextCompat.getDrawable(mContext, R.drawable.trip_button_stopping_shape));
        liveMapButton.setEnabled(false);
    } else {
        tripButton.setText(R.string.TripButtonTitleStart);
        tripButton.setBackground(ContextCompat.getDrawable(mContext, R.drawable.trip_button_start_shape));
        liveMapButton.setEnabled(false);
    }
}

要调试此问题,我验证了以下内容:

  • 正确定义文本和背景资源(即尝试使用 而不是第一和第三种情况工作)
  • if-else条件在预期时运行(即“else if”条件实际运行时我预期它。由断点验证。)
  • 此过程中不使用其他if-else条件。 (即运行正确的条件。)

其他一些可能相关的代码:

这就是活动要求GPS记录停止的方式(在完成之前导致处理步骤)

private void EndTrip() {
    //Create message to TripService with intent to run case for END_TRIP
    Message message = Message.obtain(null, TripService.END_TRIP, 0, 0);

    //Send the Message to the Service
    try {
        mMessenger.send(message);
        Toast.makeText(mContext, R.string.TripStopToast, Toast.LENGTH_SHORT).show();
    } catch (RemoteException e) {
        Log.e("Debug", "Failed to contact TripService");
    }
}

这是从服务接收消息后服务中发生的事情的结构。

private void EndTrip() {
    //Stop retrieving location updates

    //Broadcast the updated status and begin processing the trip
    mIsTripActive = false;
    mIsProcessing = true;
    UpdateStatusBroadcast();

    //Processing the collected data

    //Finish up
    mIsProcessing = false;
    UpdateStatusBroadcast();
    stopForeground(true);
}

我完全没有想法。原因是什么?为什么按钮背景在else-if?

中没有变化

1 个答案:

答案 0 :(得分:0)

经过几个小时的反复试验,我发现原因与线程有关。

我学到了什么:

  • 我的服务正在完成其工作(处理)会挂起UI线程,直到完成
  • 这很简单,因为该服务正在 on UI线程
  • 上运行
  • Android 会自动在与您应用程序其余部分分开的主题中运行服务。
  • 可以在不同的线程上运行您的服务。为此,请在服务内部的AndroidManifest中添加以下内容:

    android:process=":WhateverNameYouLikeForYourThread"
    

请注意,这当然打破了我所依赖的广播。然而,这很容易解决;结果是我不能再使用LocalBroadcastManager

通过示例 - 而不是

LocalBroadcastManager.getInstance(this).sendBroadcast(intent);

我现在用

sendBroadcast(intent);

代替。然而,这确实意味着广播不那么私密。