public static void shareTwitter(Context context,String title,String content){
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.setPackage("com.twitter.android");
intent.putExtra(Intent.EXTRA_SUBJECT, title);
intent.putExtra(Intent.EXTRA_TEXT, content);
try {
context.startActivity(intent);
} catch (Exception e) {
ToastHelper.showText(context,context.getResources().getString(R.string.not_exist_twitter));
// 트위터어플이 없다는 팝업
}
}
'Android' 카테고리의 다른 글
AES256 encode,decode 를 해보자 (0) | 2016.07.12 |
---|---|
dp를 px로 변환하기 (0) | 2016.07.12 |
Intent를 이용한 카카오스토리 공유하기 (0) | 2016.07.12 |
Intent를 이용한 페이스북 공유하기 (0) | 2016.07.12 |
Intent를 이용한 카카오톡 공뷰하기 (0) | 2016.07.12 |