안드로이드에서 Intent 로 공유를 하는데…
'다중전송은 이미지만 가능합니다.'라는 메세지만 출력이 됩니다.
공유하는 부분의 코드는 아래와 같습니다.
final Intent shareIntent = new Intent(Intent.ACTION_SEND_MULTIPLE);
shareIntent.putExtra(“EXTRA_SUBJECT”, new SimpleDateFormat(“AAAA”).format(new Date(System.currentTimeMillis())));
shareIntent.putExtra(Intent.EXTRA_STREAM, files);
shareIntent.setType("/");
act.startActivity(shareIntent);
이미지 파일과 pdf파일을 동시에 카카오톡으로 공유하려면 어떻게 하나요?