Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to do some calculating after touch-Event on my widget. Is there a possibility to do this without starting an activity? My problem is that i have to register an onClickPendingIntent to the touch-action....

There is an annoying visual response with my solution: screen flashes to black and reappears to homescreen.

this is in the widget-provider:

Intent doit_intent = new Intent(context, DoItActivity.class);
PendingIntent pendingIntent = 
           PendingIntent.getActivity(context,0, doit_intent, 0);
remoteView.setOnClickPendingIntent(R.id.main_widget, pendingIntent);

DoItActivity.class

public class DoItActivity extends Activity {
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    //do some static function calls

    finish();
  }
}
share|improve this question

1 Answer

up vote 2 down vote accepted

Use a PendingIntent that does not start an activity, then. Use getService() or getBroadcast() instead of getActivity().

share|improve this answer
1  
you made my day! – Animated Clocks Oct 18 '10 at 11:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.