Share Button



Step 1: Initialize Views and find view by id

Step 2: Set onClickListener

MainActivity.java:


String btnShare = quote.getText().toString();Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.setType("text/plain ");
sendIntent.putExtra(Intent.EXTRA_TEXT, btnShare);
startActivity(sendIntent);

একটি মন্তব্য পোস্ট করুন

0 মন্তব্যসমূহ