Back to project page android-training-tutorial.
The source code is released under:
MIT License
If you think the Android project android-training-tutorial 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 im.ene.zaidlservicesample; //from ww w. jav a 2 s. c om import android.app.Activity; import android.os.Bundle; public class Second extends Activity { protected void onCreate(Bundle savedInstance) { super.onCreate(savedInstance); overridePendingTransition(R.anim.anim_in, R.anim.anim_out); setContentView(R.layout.second); System.out.println("----Secondactivity activity---onCreates---"); } }