Get Intent from onCreate on Android

I run an action from my widget using Intent with some additional features, anyway, I can get Intent only if the activity is in the background. How can I get Intent when creating an activity? Tried .getIntent () with this, but the extra values ​​are null.

Thanks in advance

+5
source share
2 answers

How can I get intention when creating activity?

Call getIntent()on Activity.

Tried with this.getIntent (), but the extra values ​​are null.

, (, FLAG_ACTIVITY_REORDER_TO_FRONT), onNewIntent() Intent.

, PendingIntent Intent - , PendingIntent Intent (, ) , FLAG_UPDATE_CURRENT FLAG_CANCEL_CURRENT PendingIntent, / .

+18

getIntent(); , Activity. , . , :)

, ?

+3

All Articles