Android share image on snapchat
问题 I'm using this code to share a screenshot of the score: Intent sharingIntent = new Intent(Intent.ACTION_SEND); sharingIntent.setType("image/png"); Uri image = Uri.parse(Environment.getExternalStorageDirectory().toString() + "/sharescore.png"); try { // create bitmap screen capture View v1 = v.getRootView(); v1.setDrawingCacheEnabled(true); Bitmap bitmap = Bitmap.createBitmap(v1.getDrawingCache()); v1.setDrawingCacheEnabled(false); File imageFile = new File(image.getPath()); FileOutputStream