如何使用应用程序拍摄的照片?

时间:2017-11-28 20:33:39

标签: android android-layout imageview android-imageview

我有一个Android应用程序,如果你点击按钮就会拍照:

@Override
      public void onClick(View view) {
            Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
            view.getContext().startActivity(intent);
      }

如何使用图片并将其加载到现有的ImageView中? (它应该覆盖默认图片)

感谢您的帮助:)

0 个答案:

没有答案