如果用戶選擇Twitter,我想發送縮寫文本字段(由於字符限制)。從這個SO後 - Branching the Android Share Intent extras depending on which method they choose to share - 我瞭解到我可以實現有針對性的意圖。但是,當我使用下面的代碼時,許多應用程序顯示爲「Android系統」,Twitter並未顯示在對話框
首先我必須說,當我登錄到我的本地Twitter應用程序時,所有工作都很好。我從我的本地應用程序註銷時出現問題。 Intent tweetIntent = new Intent(Intent.ACTION_SEND);
tweetIntent.putExtra(Intent.EXTRA_TEXT, "my message");
tweetIntent.setType("text/
我給大家分享一些文字和Android的應用,我已經寫了代碼的鏈接如下 PlusShare.Builder shareBuilder = new PlusShare.Builder(this);
shareBuilder.setType("text/plain");
shareBuilder.setText("text to be shared");
share