Android Open Source - Google-Sign-In-Android Post Activity






From Project

Back to project page Google-Sign-In-Android.

License

The source code is released under:

MIT License

If you think the Android project Google-Sign-In-Android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.androidtitlan.gdgbootcamp;
/*from  w  ww .  ja v a2 s  .c  o m*/
import com.google.android.gms.plus.PlusShare;

import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

public class PostActivity extends Activity {

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_post);

    Button button = (Button) findViewById(R.id.button1);
    button.setOnClickListener(new OnClickListener() {

      @Override
      public void onClick(View arg0) {
        Intent shareIntent = new PlusShare.Builder(PostActivity.this)
            .setType("text/plain")
            .setText("Google Plus Sign In Success by Leon")
            .setContentUrl(
                Uri.parse("https://developers.google.com/+/"))
            .getIntent();

        startActivityForResult(shareIntent, 0);

      }
    });
  }

  @Override
  public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.post, menu);
    return true;
  }

}




Java Source Code List

com.androidtitlan.gdgbootcamp.MainActivity.java
com.androidtitlan.gdgbootcamp.PostActivity.java
com.androidtitlan.gdgbootcamp.fragment.GooglePlusFragment.java