Back to project page class_board_app.
The source code is released under:
GNU General Public License
If you think the Android project class_board_app 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.parse.starter; // www. j av a2s .c o m import android.app.Activity; import android.content.Intent; import android.os.Bundle; import com.parse.ParseUser; /** * Activity which starts an intent for either the logged in (MainActivity) or logged out * (SignUpOrLoginActivity) activity. */ public class RouteActivity extends Activity { public RouteActivity() { } @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // Check if there is current user info if (ParseUser.getCurrentUser() != null) { // Start an intent for the logged in activity startActivity(new Intent(this, PostListActivity.class)); } else { // Start and intent for the logged out activity startActivity(new Intent(this, SignUpOrLogInActivity.class)); } } }