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

正しければ、メソッドでgetIntentonCreateを呼び出すだけです。

インテントのバンドルを取得するには、インテントでgetExtrasを呼び出します。

于 2011-07-13T17:21:33.320 に答える