Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android: decodeFile always returns null for file in internal storage

Tags:

I have a file saved locally into the application's private storage. I have verified it exists, however whenever I call BitmapFactory.decodeFile it always returns null.

If I save the file as a resource and use ImageView.setImageResource, it always shows up fine.

What is the problem?

Here is the snippet:

filename = "test.png";  if (doesFileExist(filename))     Bitmap bMap = BitmapFactory.decodeFile(filename); 

I've also tried:

Bitmap bMap = BitmapFactory.decodeFile(getFilesDir().getPath()                     + filename); 
like image 718
Jahmic Avatar asked May 16 '11 03:05

Jahmic


1 Answers

This question has been answered before such as here: BitmapFactory.decodeFile returns null even image exists

This was exactly what I needed:

String fname=new File(getFilesDir(), "test.png").getAbsolutePath(); 
like image 148
Jahmic Avatar answered Oct 19 '22 04:10

Jahmic