Back to project page Valybe.
The source code is released under:
Apache License
If you think the Android project Valybe listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.lybe; // www. ja va 2s .c o m import android.os.Bundle; public class OtherActivity extends BaseActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); mesIntent.setClass(OtherActivity.this,OneActivity.class); thread = new Runnable(){ public void run(){ putToIntent(); startActivity(mesIntent); OtherActivity.this.finish(); finish(); } } ; if(!exitMark){ handler.postDelayed(thread, delay); } else { //to do } } }