Tuesday, 4 April 2017

Add picture To Gallery Android


Some time picture or video not dispay in galley after write in sdcard to internal memory. below code help me for that issue



Just pass your full path in below methods


private void galleryAddPic(String fpath) {
        try {
            Intent mediaScanIntent = new Intent(
                    "android.intent.action.MEDIA_SCANNER_SCAN_FILE");
            File f = new File(fpath);
            Uri contentUri = Uri.fromFile(f);
            mediaScanIntent.setData(contentUri);
            this.sendBroadcast(mediaScanIntent);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

No comments:

Post a Comment

Run/install/debug Android applications over Wi-Fi ?

Open Teminal/cmd --------------- Below steps is for Android 10 or lower Step 1 - Connect the device via USB and make sure debugging is work...