我一直在尝试在我的应用程序中实现简单(我认为)的东西。我认为这很简单,但不知怎的,它并没有像我想要的那样工作。
我想做的是:
- ImageView 在中心有一个活动 - 它有自己的图像(嗯,有两个)。
- 我想按下那个 ImageView(或者它可能是 ImageButton),打开画廊/用相机拍照。
- 然后,在拍摄/挑选图片后,我想让 ImageView 显示图片的缩略图。
我的布局
<ImageView
android:id="@+id/add_photo_left"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="20dp"
android:layout_weight="1"
android:adjustViewBounds="true"
android:src="@drawable/add_photo_button" />
<ImageView
android:id="@+id/add_photo_right"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:adjustViewBounds="true"
android:src="@drawable/add_photo_button" />
</LinearLayout>
我的代码 - 获取图片路径后
BitmapFactory.Options bmpFactoryOptions = new BitmapFactory.Options();
bmpFactoryOptions.inSampleSize = 8;
Bitmap bitmap = BitmapFactory.decodeFile("/sdcard/5.png",bmpFactoryOptions);
lastClicked.setImageBitmap(bitmap);
//lastClicked.setImageResource(R.drawable.green_circle);
我想做的是从 sdcard 中读取调整大小的文件(使用 inSampleSize),然后用它填充 ImageView(或 ImageButton)。但是在使用 setImageBitmap 函数后,视图消失了——就像它刚刚加载了空图像(注释行正常工作——它只是绿点)。
也许有人已经解决了类似的问题?我将不胜感激任何帮助。
问候,斯卡纳
编辑:最后一次点击:
lastClicked = (ImageView)findViewById(R.id.add_photo_left);