【问题标题】:please tell me,how to open gallery images into image view in new activity android请告诉我,如何在新活动 android 中将图库图像打开到图像视图中
【发布时间】:2013-11-25 14:47:31
【问题描述】:

如何在新的 Activity android 中将图库图像打开到图像视图中。

b1.setOnClickListener(new OnClickListener() {
    public void onClick(View v) {
        Intent i = new Intent(
        Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
        startActivityForResult(i, RESULT_LOAD_IMAGE);
    }
});

【问题讨论】:

    标签: android xml


    【解决方案1】:

    你需要实现onActivityResult

    查看此答案:https://stackoverflow.com/a/14978710/2065418 并将Bitmap 设置为您的ImageViewyourImageView.setImageBitmap(yourBitmap);

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2023-03-03
      • 2014-09-29
      • 2018-07-04
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多