728x90
반응형
SMALL
안드로이드 공유하기 기능.
공유하고자하는 텍스트를 intent를 활용하여 위임하고 선택창을 띄운다.
Intent Sharing_intent = new Intent(Intent.ACTION_SEND);
Sharing_intent.setType("text/plain");
String message = "https://blog.naver.com/deersoul6662";
Sharing_intent.putExtra(Intent.EXTRA_TEXT, message);
Intent Sharing = Intent.createChooser(Sharing_intent, "공유하기");
startActivity(Sharing);
728x90
반응형
LIST
'Android' 카테고리의 다른 글
Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK 오류 (0) | 2023.03.15 |
---|---|
안드로이드 Button 텍스트 대문자로 강제 변환될 경우 (0) | 2023.03.13 |
[안드로이드] Your project file contains non-ASCII characters. (0) | 2023.03.12 |
안드로이드 design editor is unavailable until a successful project sync 오류 (0) | 2023.03.12 |
안드로이드 웹뷰 오류 Android WebView net::ERR_CACHE_MISS (0) | 2021.04.07 |