Back to project page ExpertAndroid.
The source code is released under:
MIT License
If you think the Android project ExpertAndroid 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.androidbook.parse; /* w ww . j av a2s. c o m*/ import android.os.Bundle; import android.view.View; public class SignupSuccessActivity extends BaseActivity { public SignupSuccessActivity() { super("SignupSuccessActivity"); } public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.signup_success); } public void gotoMainActivity(View v) { gotoActivity(ParseStarterProjectActivity.class); finish(); } }//eof-class