2

我一直在到处搜索,但不知道如何获取正在运行的 Android 应用程序的当前(顶级)活动

好吧,我的场景是当应用程序在前台时我收到了一个 Firebase 云消息传递数据有效负载,并且调用了onMessageReceived(FirebaseMessagingService 的子类)。我需要找出用户正在查看的屏幕,然后决定关闭(finish())它或发送一些数据(通过 Extras / Bundle)并刷新视图。

那么,如何找出当前视图/活动是什么,并讨论或发送一些数据并导致视图刷新?

谢谢!

4

3 回答 3

4

作为对 Kevin Krumwiede 已经接受的答案的跟进,这里有一些实现细节,用于遵循他的方法的一种可能方式(任何错误都是我的):

创建一个可重用的广播接收器

public class CurrentActivityReceiver extends BroadcastReceiver {    
    private static final String TAG = CurrentActivityReceiver.class.getSimpleName();
    public static final String CURRENT_ACTIVITY_ACTION = "current.activity.action";
    public static final IntentFilter CURRENT_ACTIVITY_RECEIVER_FILTER = new IntentFilter(CURRENT_ACTIVITY_ACTION);

    private Activity receivingActivity;

    public CurrentActivityReceiver(Activity activity) {
        this.receivingActivity = activity;
    }

    @Override
    public void onReceive(Context sender, Intent intent) {
        Log.v(TAG, "onReceive: finishing:" + receivingActivity.getClass().getSimpleName());

        if (<your custom logic goes here>) {
            receivingActivity.finish();
        }
    }
}

在您的每个活动中实例化并使用该 BroadcastReceiver

public class MainActivity extends AppCompatActivity {

    private BroadcastReceiver currentActivityReceiver;

    @Override
    protected void onResume() {
        super.onResume();

        currentActivityReceiver = new CurrentActivityReceiver(this);
        LocalBroadcastManager.getInstance(this).
            registerReceiver(currentActivityReceiver, CurrentActivityReceiver.CURRENT_ACTIVITY_RECEIVER_FILTER);
    }

    @Override
    protected void onPause() {
        LocalBroadcastManager.getInstance(this).
            unregisterReceiver(currentActivityReceiver);
        currentActivityReceiver = null;
        super.onPause();
    }
}

最后,从 FirebaseMessagingService 中发送适当的广播

public class MyFirebaseMessagingService extends FirebaseMessagingService {

    @Override
    public void onMessageReceived(RemoteMessage remoteMessage) {
       Intent localMessage = new Intent(CurrentActivityReceiver.CURRENT_ACTIVITY_ACTION);   
       LocalBroadcastManager.getInstance(MyApplication.this).
            sendBroadcast(localMessage);
    }

}

此代码注册和注销 currentActivityReceiver 以确保广播接收器仅在 Activity 处于活动状态时才处于活动状态。

如果您的应用程序中有大量活动,您可能希望创建一个抽象的基本活动类并将 onResume 和 onPause 代码放入其中,并让您的其他活动从该类继承。

您还可以在 onMessageReceived 中将数据添加到名为“localMessage”的 Intent(例如,使用 localMessage.putExtra())并稍后在接收器中检索该数据。

凯文回答的一个优点是他的方法不需要任何额外的权限(如 GET_TASKS)。

此外,正如 Kevin 所指出的,除了 BroadcastReceiver (例如EventBusOtto)之外,还有其他更方便的方法可以在您的应用程序中传递消息。恕我直言,这些很棒,但它们需要一个额外的库,这会增加一些方法计数开销。而且,如果您的应用程序已经在许多其他地方使用了 BroadcastReceivers,出于美观和维护的原因,您可能会觉得您不希望在应用程序中使用两种方式来传递消息。(也就是说,Eve​​ntBus 很酷,我觉得它比 BroadcastReceivers 更简单。)

于 2017-05-15T18:37:43.897 回答
3

我们得到当前前台运行的Activity

    ActivityManager am = (ActivityManager)context.getSystemService(Context.ACTIVITY_SERVICE);
ComponentName cn = am.getRunningTasks(1).get(0).topActivity;

需要许可

<uses-permission android:name="android.permission.GET_TASKS"/>
于 2017-05-14T15:06:56.797 回答
1

别人发了正确答案然后又删了,所以我再发一次:

您不需要确定最重要的活动。您的每项活动都应该听取来自 的一些信号FirebaseMessagingService并采取适当的行动。信号可以是Intent上的广播LocalBroadcastManager,或者您可以使用某种事件总线。

于 2017-05-15T07:56:15.280 回答