当前位置: 代码迷 >> Android >> android拍照下传的效果是怎么实现的
  详细解决方案

android拍照下传的效果是怎么实现的

热度:94   发布时间:2016-05-01 17:09:34.0
android拍照上传的效果是如何实现的

Intent i = new Intent(Intent.ACTION_SEND);
File file = new File("/sdcard/MyScreen/20100528163140.jpg");
i.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));
i.setType("image/*");
startActivity(Intent.createChooser(i, "Share via..."));

  相关解决方案