[Solved] How to insert and display an image in Android? [closed]


Replace this line:

Picasso.with(AddAdsActivity.this).load(image).placeholder(R.drawable.camera).into(TuitionImage);

With this:

Picasso.get().load(image).placeholder(R.drawable.camera).into(TuitionImage);

And that’s it.. Your error will be solved.

2

solved How to insert and display an image in Android? [closed]