[안드로이드] 웨이보, 페이스북, Google+의 간단한 공유 방법
1827 단어 Android
구글플레이와 유튜브 등 공식 애플리케이션에서도 이런 은밀한 인텐트를 사용해 공유 기능을 구현했다.
try {
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, "共有する文言");
startActivity(Intent.createChooser(intent, "共有する"));
} catch (Exception e) {
}
그게 다야.
Reference
이 문제에 관하여([안드로이드] 웨이보, 페이스북, Google+의 간단한 공유 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ux_design_tokyo/items/96774c11026e8a321f84텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)