2013年9月10日星期二

How to jump from one service to the activity?

How to jump from one service to the activity?
------ Solution ---------------------------------------- ----
jump to the activity more than the activity set a
intentv.setFlags (Intent.FLAG_ACTIVITY_NEW_TASK);
------ For reference only ------------------------- --------------
Intent intent = new Intent (Service.this, BActivity.class);
intentv.setFlags (Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity (intent);
What is this ?
------ For reference only -------------------------------------- -
Service.this this direct write this it
------ For reference only ---------------------- -----------------
Yes, I try !

没有评论:

发表评论