I use fabric sdk for Android. Made all as in sample:
TweetComposer.Builder builder = new TweetComposer.Builder(this)
.text(((TextView) findViewById(R.id.tvMSG)).getText().toString());
if (imgFileName!=null && !imgFileName.equals("")) {
builder.image(Uri.parse(imgFileName));
}
builder.show();
where is imgFileName is a link to image in internet (http://b2b4trade.com/images..../2.jpeg for example) But when .show executed I see composer with my text but I don't see image. So my question is - how to compose tweet with image?