I am developing one application. In it i am displaying all default sharing options like Bluetooth, E-Mail, Drive, Facebook, Twitter, Yahoo, FreeSMS. I am getting default Text in All except Facebook. How to set Default Text on Facebook wall. Please Help Me for my this issue.
my Code is as follows:
public class MainActivity extends Activity implements OnClickListener {
private Button btn_share;
// private Dialog mdialog = null;
private String TAG = "This Message is from HardenUp.Thank You.";
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.activity_main);
getInit();
}
private void getInit() {
btn_share = (Button) findViewById(R.id.btn_share);
btn_share.setOnClickListener(this);
}
public void onClick(View v) {
if (v == btn_share) {
// showDialog();
Intent sharingIntent = new Intent(
android.content.Intent.ACTION_SEND);
sharingIntent.setType("text/plain");
sharingIntent.putExtra(Intent.EXTRA_TEXT, TAG);
sharingIntent.putExtra(Intent.EXTRA_SUBJECT, "HardenUp");
startActivity(Intent.createChooser(sharingIntent, "Share Using"));
}
}
}