ACTION_SEND intent android
问题 I am trying to pass a url to a specific app using the ACTION_SEND intent, I want to by pass the chooser and just go straight to the app i desire but it doesn't seem to take the url unless i use the chooser.. private void shareIt(){ Intent pC = new Intent(Intent.ACTION_SEND); pC.setType("text/plain"); pC.putExtra(Intent.EXTRA_TEXT, "http://www.bob.com"); pC.setType("text/plain"); pC.setClassName("com.sec.print.mobileprint","com.sec.print.mobileprint.UI.WebPrint"); //startActivity(pC);