How to add custom parameter (Dowload Image) with other share parameters in android

Is it possible to add a custom option (like Upload Image) with a different sharing option (shown in the attached image) in the selection setting?

enter image description here

+3


source to share


2 answers


Unfortunately, I have not received any helpful answers. I did a workaround to resolve this issue.

Here is the code to add a custom Save to Gallery option (shown in the attached image)

Intent downloadIntent = new Intent(aContext, DownloadActivity.class);
downloadIntent.putExtra("url", url);
intentList.add(new LabeledIntent(downloadIntent, "com.don.offers", "Save To Gallery", R.drawable.ic_save_to_gallery));

// convert intentList to array
LabeledIntent[] extraIntents = intentList.toArray(new LabeledIntent[intentList.size()]);
openInChooser.putExtra(Intent.EXTRA_INITIAL_INTENTS, extraIntents);

      

Here DownloadActivity is a transparent activity that has code to download the image.



public class DownloadActivity extends AppCompatActivity {

    String imageUrl;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_download);

        imageUrl = getIntent().getStringExtra("url");
        saveToGallery();
        finish();
    }


    public void saveToGallery() {
        try {
            String DIR_NAME = "Don Downloaded Images";
            String filename = "DON_IMG_" + System.currentTimeMillis();
            //String downloadUrlOfImage = "http://fun.localdon.com/DonUGCImg/DON_memes14908366211071492831321991.png";
            String downloadUrlOfImage = imageUrl;
            File direct =
                    new File(Environment
                            .getExternalStoragePublicDirectory(String.valueOf(Environment.DIRECTORY_PICTURES))
                            .getAbsolutePath() + "/" + DIR_NAME + "/");


            if (!direct.exists()) {
                direct.mkdir();
                Log.e("saveToGallery", "dir created for first time");
            }

            DownloadManager dm = (DownloadManager) DownloadActivity.this.getSystemService(Context.DOWNLOAD_SERVICE);
            Uri downloadUri = Uri.parse(downloadUrlOfImage);
            DownloadManager.Request request = new DownloadManager.Request(downloadUri);
            request.setAllowedNetworkTypes(DownloadManager.Request.NETWORK_WIFI | DownloadManager.Request.NETWORK_MOBILE)
                    .setAllowedOverRoaming(false)
                    .setTitle(filename)
                    .setMimeType("image/jpeg")
                    .setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED)
                    .setDestinationInExternalPublicDir(String.valueOf(Environment.DIRECTORY_PICTURES),
                            File.separator + DIR_NAME + File.separator + filename);

            dm.enqueue(request);


            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
                final Intent scanIntent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
                final Uri contentUri = Uri.fromFile(direct);
                scanIntent.setData(contentUri);
                DownloadActivity.this.sendBroadcast(scanIntent);
            } else {
                final Intent intent1 = new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://" + Environment.getExternalStorageDirectory()));
                DownloadActivity.this.sendBroadcast(intent1);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

      

enter image description here

If anyone has a better approach please share. thank

+2


source


Post this answer: Link
Sample Code: Github Project



-1


source







All Articles