6
Erstellen Sie eine Bitmap / Drawable aus dem Dateipfad
Ich versuche, eine Bitmap oder ein Drawable aus dem vorhandenen Dateipfad zu erstellen. 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); Aber setImageBitmap(), setImageDrawable()nicht zeigt ein Bild aus dem Weg. Ich habe Pfad mit gedruckt mTextund es sieht …