0
Eae blz ?! So I’m trying to work with images in native android classes, where the image is displayed through a class !! I already have a question where the link is just below !!
So far I haven’t found anything about, and I’m thinking of creating several classes that would be one for each type of screen and mainactivity treated that but I don’t know how the scheme of the screens and the functions. Do you have any study material or tutorial for this??
some special reason not to use libraries like Glide or Picasso?
– Mr_Anderson
It would not be easier to add an imageview in XML?
– Rafael Silva
Mr_anderson I will take a look at the library, and Rafael Silva the problem is that the application is full screen and an image even occupies the whole screen however sgunda image I want to overwrite I could not occupy the whole screen
– SanekeDev
I find it unnecessary...Glide is very simple to use...just type: Glide.with(context). load(myImg). into(imageView); where context is the context, myImg is the image itself, which can be any format, and imageView is the already instantiated widget.
– Mr_Anderson
https://github.com/bumptech/glide
– Mr_Anderson