开发者

How to close screen while moving to next screen in android platform?

How to close screen while moving to next screen in an开发者_开发百科droid platform?

i have one working scenario like this. while moving from one screen to other screen need to close(i shouldn't show screen while press Esc key).

Please help me

Regards, Jeyavel N


I'm assuming that by "screen" you mean "Activity".

All you need to do is call finish() after you call startActivity(). eg.:

startActivity( new Intent( this, Foo.class) );
finish();

That should do it.

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜