private void showSignedInUI() {
    // set current user
    String accountName = Plus.AccountApi.getAccountName(mGoogleApiClient);
    Account account = new Account(accountName, GoogleAuthUtil.GOOGLE_ACCOUNT_TYPE);
    User.setCurrentUser(new User(account.name, account.name, "0", "0"));

    // Send Authentication Token to server and set current User
    new GetUserIDTask().execute();

    setContentView(R.layout.activity_myrides);
    if (savedInstanceState == null) {
      activityFragment = new MyRidesFragment();
      getSupportFragmentManager()
          .beginTransaction()
          .add(R.id.container, (activityFragment))
          .commit();
    }

    signedIn = true;
    invalidateOptionsMenu();
  }