2012-03-01 205 views
-1

如何實現在這樣的對話框中共享某些文本的意圖?Android共享意圖

enter image description here

+0

你想發送這些意圖或接收它們? – 2012-03-01 14:04:51

+6

我將這個問題的標題複製到搜索引擎中。現在,猜猜我發現了什麼? -1沒有研究工作。 – 2012-03-01 14:05:14

+0

我想發給他們 – 2012-03-01 14:05:30

回答

4
Intent intent = new Intent(); 
intent.setAction(android.content.Intent.ACTION_SEND); 
intent.setType("text/plain"); 
intent.putExtra(Intent.EXTRA_STREAM, Uri.parse(filePath)); 
try 
{ 
    startActivity(Intent.createChooser(intent, "Sending File...")); 
} 
2

有妳:

Intent intent = new Intent(Intent.ACTION_SEND); 
intent.setType("text/plain"); 
intent.putExtra(Intent.EXTRA_TEXT, YOUR_TEXT_TO_SEND); 
startActivity(Intent.createChooser(intent, "Share with")); 
0

您也可以使用我的圖書館Android Intents。查看演示應用程序的詳細信息