1

i am starting the browser with intent using

                Intent i = new Intent();
                i.setAction(Intent.ACTION_VIEW);
                i.setData(Uri.parse(url));
                i.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
                startActivity(i);

but when i see recent applications i see

Internet

before my Application. I dont want Internet to be shown at all in recent when i launch it as sub-application of mine. Is there a flag to do so?? thanks.

4

1 回答 1

0

根据您的意图使用 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS

i.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS)

于 2012-10-10T11:26:00.623 回答