Skip to content Skip to sidebar Skip to footer

Send Data From Widget To Activity

I'm trying to send data from my widget to my activity. I've seen several topics about the widget side, but I didn't succeed to get the data in my activity. See Passing data from wi

Solution 1:

As per your suggested link, you will get your intent's data inside onNewIntent method,

@Override
protected void onNewIntent(Intent intent) {
    // TODO Auto-generated method stub
    super.onNewIntent(intent);
}

Get your intent data from inside this method.


Post a Comment for "Send Data From Widget To Activity"