Intent intent = new Intent(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_TEXT,getResources().getString(R.string.share_message));
intent.setType("text/plain");
startActivity(Intent.createChooser(intent,getResources().getString(R.string.share_lable)));