Arun PS
Arun PS

Reputation: 4650

Android twitter tweet share with the default tweet box

I am working in an android application and I want to post tweets to twitter from my android application. I got the a good sample from the link https://github.com/ddewaele/AndroidTwitterSample and I integrated it and it worked successfully. But my requirement is to bring the default tweet box from the original twitter website and post the tweet from it. Is it possible to bring that default tweet box to our application in android.

Please help me.

Thanks in advance.

Upvotes: 2

Views: 752

Answers (1)

MKJParekh
MKJParekh

Reputation: 34301

When the user press button to share tweet you can open a link in WebView(Your Own WebView in your Application) or Default browser.

"http://www.twitter.com?status="

or to pass any static message,

"http://www.twitter.com?status=MyMessageHere"

Upvotes: 3

Related Questions