2012-12-02 58 views

回答

7

Button Click

Intent shareIntent = new Intent(Intent.ACTION_SEND); 
shareIntent.setType("text/plain"); 
shareIntent.putExtra(Intent.EXTRA_TEXT,"Your score and Some extra text"); 
shareIntent.putExtra(Intent.EXTRA_SUBJECT, "The title"); 
startActivity(Intent.createChooser(shareIntent, "Share...")); 
2

創建一個將上分享按鈕調用的方法,並在其中

Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND); 
startActivity(Intent.createChooser(sharingIntent, "Share via")); 

添加此行試試這個link爲好。

乾杯