Im a beginner programmer, and my question is: Which image format shall i use for my android app?

Descripton: I only use illustrations, so the images are mostly background images, and some buttons, and i would like to know which is the best way to do this.

My current progress for images are the next: I use .png file format. I dont know what resolution should I use, now I work with 300x400 px images aproximetly.

Here is my code for using the images:

Bitmap bMap = BitmapFactory.decodeResource(getResources(), MyArray[index].getArtiD());

MyImageView.setImageBitmap(bMap);

So this is the way I use images in Android, pls guys if anyone know issues, tips or a "must know information" to tell pls do it. I dont really understand why should I use this bitmap factory or why should i use png format. I want to do it in the best way I can, and I dont see many things in android documentation.

Thanks, Adam

link|improve this question

74% accept rate
feedback

1 Answer

up vote 2 down vote accepted

In android the best format of Image is PNG as it light compare to JPG,JPEG etc.So its easy to draw and take less time to perform the operation while using these images.

And For bitmap Go through this Bitmap Help

Edited Yes no need to use Bitmap ,if you have images in resource.If your images are in Draw able then use

        ImageView img=new ImageView(this);
    //You can use like that without using Bitmap
    img.setImageResource(R.drawable.arrow_s);
link|improve this answer
1  
Why should i use Bitmap factory then? ...if png is good enough? – Adam Varhegyi Nov 8 '11 at 9:42
1  
You can use PNG image Only from drawable folder (Directly if present).But Bitmap can decode a stream of image, it can fetch image from resource also. – Sameer Nov 8 '11 at 11:29
solved it or not? – Sameer Jan 31 at 13:08
i dont think so – Adam Varhegyi Feb 2 at 10:41
now did you solve it?if yes then please accept it to help other too – Sameer Apr 5 at 9:06
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.