如何在非活动类中使用 onNewIntent



这个问题可能看起来有点宽泛,但我相信一旦你读完了,上下文就会变得清晰。

我需要编写一个不扩展活动的类,但我希望它能够在NewIntent Method上运行。

这样做的原因是该类实际上没有或不需要接口或连接到 UI。我只需要它在背景中嗅出一些意图。我还不能让 onNewIntent 部分工作。

这就是我的意思。

public class MyClass {
  private PendingIntent mPendingIntent;
  private IntentFilter[] mFilters;

  public MyClass(){
    this.activity = activity;
    doAction();
  }
  public void doAction(){
   mPendingIntent = PendingIntent.getActivity(activity.getApplicationContext(), 0, new Intent(activity.getApplicationContext(),getClass()).addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP), 0);
        mFilters = new IntentFilter[]{
                new IntentFilter(NfcAdapter.ACTION_TECH_DISCOVERED),
                new IntentFilter(NfcAdapter.ACTION_NDEF_DISCOVERED),
                new IntentFilter(NfcAdapter.ACTION_TAG_DISCOVERED)};
  }

  //Now i want to do some action when there is a new intent but since it doesn't extend activity, this don't work. Extending activity will mean using onCreate and all that other good stuff which i don't want
  @Override
  public void onNewIntent(Intent intent) { 
     Toast.makeText(activity.getApplicationContext(), "Got to intent", Toast.LENGTH_SHORT).show();
     super.onNewIntent(intent);
     doStuffWithIntent(intent);
    //This block doesn't work. I'm looking for alternative to get working. 
  }

}

由于该类不需要接口,因此我认为它没有理由扩展活动。但是对于我想正常工作的事情,我需要检查新的意图。

想知道是否有非活动类的解决方法来侦听新意图。

我只需要它在后台

嗅一些意图

Intents有三个"通道":启动活动、启动和绑定到服务以及发送广播。

代码中引用的三个Intent操作用于启动活动。它们只会被交付给活动,你不能通过任何其他方式"嗅探"它们(除了可能生根设备或构建自定义 ROM(。

想知道是否有非活动类的解决方法来侦听新意图。

让调用的活动onNewIntent()将事件转发到非活动类。

另一种选择是在活动中维护对类实例的引用,然后在活动的onNewIntent()方法中对类调用公共方法

相关内容

  • 没有找到相关文章