2012-04-20 1 views
0

나는이 같은 사용 의도를 가지고 있지만 이미지로 게임 점수를 게시하는 방법을 찾기 위해 베일을 벗기지 않았습니다. 이 같은Android - 게시해야 함/이미지로 게임 점수 공유 + 일부 텍스트

Intent share = new Intent(Intent.ACTION_SEND); 
       share.setType("text/plain"); 
       share.putExtra(Intent.EXTRA_TEXT,"I just scored 1000"); 
       share.putExtra(Intent.EXTRA_SUBJECT, "Comming Soon!!"); 
       startActivity(Intent.createChooser(share, "Share...")); 

답변

0

시도 뭔가 :

Intent shareIntent = new Intent(Intent.ACTION_SEND); 
shareCaptionIntent.setType("image/*"); 

//game image 
shareIntent.setData(gameImage); 
shareIntent.putExtra(Intent.EXTRA_STREAM, gameImage); 

//game score 
shareCaptionIntent.putExtra(Intent.EXTRA_TITLE, "game score") 

startActivity(Intent.createChooser(shareIntent, getString(R.string.share))); 
+0

자사가 작동하지 어떤 친구 :( –