I need to rotate an image inside a Layout in Android Studio

I have the following code:

options = new DisplayImageOptions.Builder()
.cacheInMemory(true)
.resetViewBeforeLoading(true)
.cacheOnDisc(true)
.considerExifParams(true)
.bitmapConfig(Bitmap.Config.RGB_565)
.build();

ImageView imageView = (ImageView) view.findViewById(R.id.galleryImageView);

ImageLoader.getInstance().displayImage(“file://storage/Picture…”, imageView, options);

I need the image I’m sending to view is rotated 90º

I hope I specify that they know what I’m talking about

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.