画像のビットマップを黒色のピクセルに設定しようとしましたが、イメージURIを試しましたが、黒色のピクセルも設定しましたが、デバッグしたとき、正しい画像であるが、両方の方法は画像ビューでそれを設定することができない。 イメージをビットマップで取得しても黒いピクセルのみを返す
`ImageView imageView = (ImageView) rootView.findViewById(R.id.imagef);
try
{
String profileImagePath = Environment.getExternalStorageDirectory().toString() + "/MYFolder/"+ Configuration.empcode+".jpg";
File profilepath = new File(profileImagePath);
if(profilepath.exists())
{
//need to resolve
Bitmap bmp = BitmapFactory.decodeFile(profileImagePath);
Uri uri = Uri.fromFile(new File(profileImagePath));
// imageView.setImageBitmap(bmp);
imageView.setImageURI(uri);
}
}
catch(Exception e)
{
Log.d("Profile Image Exception", e.toString());
}
`
は
そのJPGファイルのファイルな長さとは何ですか?それは解決ですか? 'bmp'がヌルかどうか確認してください。 – greenapps