javaandroidshare-intent

how to open installed application from my application for sharing contents


I need to open all applications installed in my phone into my android application for sharing contents, can I find a simple method ?


Solution

  • I think you can try this if data is in text format

        Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
    
        sharingIntent.setType("text/plain");
        String shareBody = "Here is the share content body";
    
        sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Subject Here");
        sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, shareBody);
    
    
        startActivity(Intent.createChooser(sharingIntent, "Share via"));