2012-09-07 57 views
-1

我想通過android發送預先通過google +郵件,但我不確定是否找到了正確的URL。我發現https://plus.google.com/app/plus/mp/430/#~loop:view=compose,但它不設置我的文本。實際上是否有另一個官方應用程序的URL可以允許? Twitter有一個波紋管。 10xGoogle手機撰寫頁面網址

Intent i = new Intent(); 
i.putExtra(Intent.EXTRA_TEXT, msg); 
i.setAction(Intent.ACTION_VIEW); 
i.setData(Uri.parse("https://mobile.twitter.com/compose/tweet")); 
ctx.startActivity(i); 

回答

0

您可以通過ACTION_SEND意圖在Google+上分享文字和圖片。

例子:

Intent shareIntent = new Intent(); 
shareIntent.setAction(Intent.ACTION_SEND); 
shareIntent.putExtra(Intent.EXTRA_TEXT, "Hello World!"); 
shareIntent.setType("text/plain"); 
startActivity(shareIntent); 

如果您想直接針對Google+應用,你可以在調用startActivity之前調用setPackage上shareIntent

shareIntent.setPackage("com.google.android.apps.plus");