How to hide the background of images in the android studio app?

0

I'm new to programming and I'm programming an app in the android studio that is practically ready. When copilo it in my Moto G2 with android 6.0 works perfectly however when copilo in the Moto X1 android 5.0 all the images appear the background overlapping those that are underneath even the icon of the app appeared the background what does not happen in Moto G2 and all images are in GIF format. I have no idea what the problem might be since it works on G2 and X1 does not. If you can help me thank you.

    
asked by anonymous 21.07.2016 / 14:54

1 answer

0

Ideally your app images should be in the png format (not mandatory) so that they can behave the same on all devices and preferably background. In addition, you can also use libraries like Picasso to work with images, take a look at this Google article talking about how to handle the images ( 9-patch ) for your app, 9-patch .

    
21.07.2016 / 18:44