0

当我选择某种文件类型时,我能够让 Astro 启动我的活动。但是,当我的活动开始时,我不知道如何获取意图!

public class Viewer extends ListActivity{
....
// Flag if receiver is registered 
private boolean mReceiversRegistered = false;

// I think this is the broadcast you need for something like an incoming call
private String INCOMING_CALL_ACTION = "android.intent.action.VIEW";
// Define a handler and a broadcast receiver
private final Handler mHandler = new Handler();

private final BroadcastReceiver mIntentReceiver = new BroadcastReceiver() {
  @Override
  public void onReceive(Context context, Intent intent) {
    // Handle reciever
    String mAction = intent.getAction();
    Toast.makeText(context,"Found with passed context", Toast.LENGTH_LONG).show();
    Toast.makeText(BallLidarViewer.this, "Found with my context", toast.LENGTH_LONG).show();
    System.out.print("FOUND");
    Log.d("FOUND","FOUND");
    if(mAction.equals(INCOMING_CALL_ACTION)) {
      // Do your thing   

    }
  }
};

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
       super.onCreate(savedInstanceState);
....
}
}

当我的活动开始时,我无法运行任何测试输出代码。我究竟做错了什么?谢谢!

4

1 回答 1

1

如果我猜对了,您可以简单地在您的方法中调用getIntent 。onCreate

要获取意图的捆绑包,请在意图上调用getExtras

于 2011-07-13T17:21:33.320 回答