모든 애플리케이션에 대한 Android 앱에서 데이터 공유 (Share Data in android app for all applications)


문제 설명

모든 애플리케이션에 대한 Android 앱에서 데이터 공유 (Share Data in android app for all applications)

안드로이드에서 모든 애플리케이션에 대해 데이터(txt 또는 이미지 ....)를 공유하는 방법

예:

모든 애플리케이션에 대해 Android에서 데이터 공유(txt 또는 이미지 ....)

페이스북에서 수행하지 않는 코드

의도 sendIntent = new Intent(android.content.Intent.ACTION_SEND); sendIntent.putExtra(Intent.EXTRA_TEXT, "전송할 텍스트입니다."); sendIntent.setType("텍스트/일반"); startActivity(Intent.createChooser(sendIntent, getResources().getText(R.string.send_to)));


참조 솔루션

방법 1:

You can only share links using an intent. you need Facebook Sdk to share text or images

(by Majduser5534193)

참조 문서

  1. Share Data in android app for all applications (CC BY‑SA 2.5/3.0/4.0)

#android-intent #facebook #Android #mobile-application






관련 질문

인텐트를 사용하여 메시지 작성 열기 (Opening create message using an intent)

다른 데이터로 일부 인텐트를 생성하더라도 알림에서 동일한 추가 데이터를 얻습니다. (I get the same extra data from notifications even if I create some intents with different data)

내 앱의 피드백 양식에 채워진 텍스트를 내 이메일 주소로 가져오는 방법은 무엇입니까? 자세한 내용을 참조하십시오 (How to get the text filled in feedback form of my app to my email address? Please see details)

Android 이미지 갤러리 이미지 자르기 및 ImageView 설정 (Android Image Gallery Crop Image and set ImageView)

xamarin에서 Android 활동 간에 데이터를 전달할 수 없습니다. (Can't pass data between android activities in xamarin)

모든 애플리케이션에 대한 Android 앱에서 데이터 공유 (Share Data in android app for all applications)

zxing이 브라우저에서 URL을 열도록 하거나 스캔 후 번호를 다이얼하는 방법 (How to make zxing open a URL in a browser or dial a number after scanning)

Android 암시적 의도 유효성 검사 (Android implicit intents validation)

kaldi 설치 시 libmkl_tbb_thread.so sth 관련 문제 (A problem related to libmkl_tbb_thread.so sth when installing kaldi)

Intent를 통해 데이터 전달 및 수신 (Passing data through Intent and receiving it)

android studio에서 인텐트를 통해 여러 콘텐츠를 보내는 방법 (how can i send multiple contents through intent in android studio)

Kotlin의 다른 EditText 값에 대한 의도 EditText 값 (Intent EditText values to another EditText values in Kotlin)







코멘트