-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);