3

Hi friends i m new in android , i try to upload the image in flickr and text but iam not able to upload the image in flickr i read many blogs http://blog.theunical.com/java/flickr-example-to-upload-photos-using-java/ and http://www.flickr.com/services/api/ but i m not get good answer so please help me frnd how to upload the image in flickr , if u have a sample code please share with me

user2189505
  • 51
  • 1
  • 10

2 Answers2

2

Have a look on Flickr Library and the source code which is specially designed to work with android.You can go for this code also it works fine,

Have a look the full source code available!!

Hope it may help You!!!

Janmejoy
  • 2,721
  • 1
  • 20
  • 38
0

Try with this..

Intent intent = new Intent(getApplicationContext(),
            FlickrjActivity.class);
intent.putExtra("flickImagePath", fileUri.getAbsolutePath());
startActivity(intent);

enter image description here

See full answer here.

Community
  • 1
  • 1
Bhavesh Hirpara
  • 22,255
  • 15
  • 63
  • 104