首页 > 代码库 > Android 启动后页面跳转
Android 启动后页面跳转
1.LoadingActivity
public class LoadingActivity extends Activity implements Handler.Callback{ private Handler mHandler; private Timer mTimer; private View mView; public boolean handleMessage(Message paramMessage) { switch (paramMessage.what) { default: return false; case 0: startActivity(new Intent(this, MenuActivity.class)); overridePendingTransition(R.anim.left_in, R.anim.left_out); finish(); } return false; }/*schedule(TimerTask task, long delay)的注释:Schedules the specified task for execution after the specified delay。大意是在延时delay毫秒后执行task。并没有提到重复执行 */ public void onCreate(Bundle paramBundle) { super.onCreate(paramBundle); setContentView(R.layout.loading); this.mView = findViewById(R.id.rl_loading); this.mHandler = new Handler(this); this.mTimer = new Timer(); this.mTimer.schedule(new TimerTask() { public void run() { LoadingActivity.this.mHandler.sendEmptyMessage(0); } } , 3000L); } public boolean onKeyDown(int paramInt, KeyEvent paramKeyEvent) { this.mTimer.cancel(); return super.onKeyDown(paramInt, paramKeyEvent); } protected void onPause() { super.onPause(); } protected void onResume() { super.onResume(); }}
2.left_in.xml
<?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android"> <translate android:duration="500" android:fromXDelta="100.0%p" android:toXDelta="0.0" /> </set>
3.left_out.xml
<?xml version="1.0" encoding="utf-8"?><set xmlns:android="http://schemas.android.com/apk/res/android"> <translate android:duration="500" android:fromXDelta="0.0" android:toXDelta="-100.0%p" /></set>
Android 启动后页面跳转
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。