我想用齐射从数据库中在CirculerImageView中设置Image,但是它不起作用。 (照片1是TextView),并在logcat中显示我:-E / BitmapFactory:无法解码流:java.io.FileNotFoundException:/1541480944123.jpg:打开失败:ENOENT(没有此类文件或目录)
String img_path = getString(R.string.imgpath);
if (!photo1.getText().toString().equalsIgnoreCase("null")) {
String final_img_path = img_path + photo1.getText().toString();
Log.e("FINAL_IMAGE_PATH", final_img_path);
ImageLoader.getInstance().displayImage(final_img_path, cimageview, options, animateFirstListener);
} else {
Toast.makeText(getActivity(), "Image not showing", Toast.LENGTH_SHORT).show();
}