Próbuję utworzyć mapę bitową lub do rysowania z istniejącej ścieżki pliku.
String path = intent.getStringExtra("FilePath");
BitmapFactory.Options option = new BitmapFactory.Options();
option.inPreferredConfig = Bitmap.Config.ARGB_8888;
mImg.setImageBitmap(BitmapFactory.decodeFile(path));
// mImg.setImageBitmap(BitmapFactory.decodeFile(path, option));
// mImg.setImageDrawable(Drawable.createFromPath(path));
mImg.setVisibility(View.VISIBLE);
mText.setText(path);
Ale setImageBitmap()
, setImageDrawable()
nie wyświetla obrazu z toru. Wydrukowałem ścieżkę za pomocą mText
i wygląda to tak:/storage/sdcard0/DCIM/100LGDSC/CAM00001.jpg
Co ja robię źle? Czy ktoś może mi pomóc?
java
android
android-drawable
bitmapfactory
Nari Kim Shin
źródło
źródło
id
wmBuffer
. Ale jegomHeight
,mWidth
wartość jest-1
, amLayoutBounds
jestnull
.Cursor
i próbowałem innych obrazów, ale ten sam wynik. Sprawdziłem również ścieżkę przezadb shell
i odkryłem, że obrazy istnieją w tej ścieżce.Odpowiedzi:
Utwórz bitmapę ze ścieżki pliku:
File sd = Environment.getExternalStorageDirectory(); File image = new File(sd+filePath, imageName); BitmapFactory.Options bmOptions = new BitmapFactory.Options(); Bitmap bitmap = BitmapFactory.decodeFile(image.getAbsolutePath(),bmOptions); bitmap = Bitmap.createScaledBitmap(bitmap,parent.getWidth(),parent.getHeight(),true); imageView.setImageBitmap(bitmap);
Jeśli chcesz przeskalować bitmapę do wysokości i szerokości rodzica, użyj
Bitmap.createScaledBitmap
funkcji function.Myślę, że podajesz złą ścieżkę do pliku. :) Mam nadzieję że to pomoże.
źródło
Mi to pasuje:
File imgFile = new File("/sdcard/Images/test_image.jpg"); if(imgFile.exists()){ Bitmap myBitmap = BitmapFactory.decodeFile(imgFile.getAbsolutePath()); //Drawable d = new BitmapDrawable(getResources(), myBitmap); ImageView myImage = (ImageView) findViewById(R.id.imageviewTest); myImage.setImageBitmap(myBitmap); }
Edytować:
Jeśli powyższy katalog sdcard na stałe nie działa w Twoim przypadku, możesz pobrać ścieżkę sdcard:
String sdcardPath = Environment.getExternalStorageDirectory().toString(); File imgFile = new File(sdcardPath);
źródło
Environment.getExternalStorageDirectory().toString()
a następnie spróbujtutaj jest rozwiązanie:
źródło
Cóż, użycie statycznego
Drawable.createFromPath(String pathName)
wydaje mi się nieco prostsze niż samodzielne dekodowanie ... :-)Jeśli twój
mImg
jest prostyImageView
, nawet go nie potrzebujesz, użyjmImg.setImageUri(Uri uri)
bezpośrednio.źródło
static ArrayList< Drawable> d; d = new ArrayList<Drawable>(); for(int i=0;i<MainActivity.FilePathStrings1.size();i++) { myDrawable = Drawable.createFromPath(MainActivity.FilePathStrings1.get(i)); d.add(myDrawable); }
źródło
nie możesz uzyskać dostępu do swoich drawables przez ścieżkę, więc jeśli chcesz mieć czytelny dla człowieka interfejs z twoimi drawables, który możesz budować programowo.
zadeklaruj HashMap gdzieś w swojej klasie:
private static HashMap<String, Integer> images = null; //Then initialize it in your constructor: public myClass() { if (images == null) { images = new HashMap<String, Integer>(); images.put("Human1Arm", R.drawable.human_one_arm); // for all your images - don't worry, this is really fast and will only happen once } }
Teraz dostęp -
String drawable = "wrench"; // fill in this value however you want, but in the end you want Human1Arm etc // access is fast and easy: Bitmap wrench = BitmapFactory.decodeResource(getResources(), images.get(drawable)); canvas.drawColor(Color .BLACK); Log.d("OLOLOLO",Integer.toString(wrench.getHeight())); canvas.drawBitmap(wrench, left, top, null);
źródło