开发者

Displaying app main menu/home screen when returning to app after having started an external Activity/Intent

开发者 https://www.devze.com 2022-12-23 05:21 出处:网络
I\'m starting Android Market via my app to search for similar products using this code: Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(\"http://market.a开发者_运维问答ndroid.com/search?q=pu

I'm starting Android Market via my app to search for similar products using this code:

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://market.a开发者_运维问答ndroid.com/search?q=pub:\"some txt\""));
c.startActivity(intent);

This works fine for showing similar products. However, if I hit the home button while in the market, when I re-open the app it still shows market results. I want to go to the main menu in this case.

Is there a solution?


Sorry, FLAG_ACTIVITY_NO_HISTORY is probably not the correct solution. Note the semantics of it -- the activity just doesn't appear in the history. Thus if the user taps on one of the things in it to go to the next activity, then pressing back, they will not return to the previous one (but the one before). This is rarely what you want.

Worse, if they go to a second activity from the market activity, press home, and return to your app, the second activity will still be there (it is keeping itself in the history).

The correct flag for this situation is FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET.


If you add the FLAG_ACTIVITY_NO_HISTORY flag to the intent, it won't be kept on the history stack. When the user navigates back to your application, the last activity that was visible before you launched the marketplace will be shown.

Intent intent = new Intent(Intent.ACTION_VIEW,
    Uri.parse("http://market.android.com/search?q=pub:\"some txt\"")); 

c.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
c.startActivity(intent); 

Edit: hackbod is correct: FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET is a better fit for what you need.


This is not a problem.

When you press home on the Market app it isn't closed, just paused. So when you open it again you resume it. Check Android activity's lifecycle.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号