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; //from ww w . ja v a 2 s . co m import android.os.Bundle; public class OneActivity extends BaseActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); mesIntent.setClass(OneActivity.this,OtherActivity.class); thread = new Runnable(){ public void run(){ putToIntent(); //It is crucial to use "putExtras" at the right time. 2013.4.16 //Using "putExtras" here equals inserting values in the last step. startActivity(mesIntent); OneActivity.this.finish(); finish(); } } ; if(!exitMark){ handler.postDelayed(thread, delay); } else { //to do } } }