About Twitter Fabric, if you want send twitter button, you must implement it on your own. It's not hard,
Just use your TwitterApiClient
method update():
apiClient.getStatusesService().update(composeTweet.getText().toString(),
null, null, null, null, null, null, null, callback);
Where's "composeTweet.getText()"
is your EditText
field, and "callback
" is Callback<Tweet> callback
. You can read more about it parameters from "dev.twitter.com/rest/reference/post/statuses/update".
If you want set Twitter-Style to your button, just add to button xml: style="@style/tw__Button"
Also, the documentation have an example, how to add entire TweetCompose activity. It may cause some troubles to implement, but you can use another example from here.
If you have more questions, you can find more help and useful info at "twittercommunity.com/c/fabric", because Twitter staff are answering there.