如何在单击按钮时滑入和滑出活动.?

Sae*_* V. 1 animation android gestures

我想在按钮点击事件中滑入并滑出活动.

har*_*ish 6

从2.1关键词你会做到这一点.首先,您将从api演示文件下载anim文件夹.然后对每个意图应用如下所示.

Intent intent = new Intent(Fisrst.this, Second.class);
startActivity(intent);
overridePendingTransition(R.anim.slide_left, R.anim.slide_right);
Run Code Online (Sandbox Code Playgroud)