Try it.
try { Toast.makeText(getApplicationContext(), "Sharing Via telegram !", Toast.LENGTH_LONG).show(); Intent waIntent = new Intent(Intent.ACTION_SEND); waIntent.setType("image/*"); waIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION); PackageInfo info=pm.getPackageInfo("com.whatsapp", PackageManager.GET_META_DATA);//Check if package exists or not. If not then code waIntent.setPackage("org.telegram"); //package check whether telegram is installed waIntent.putExtra(Intent.EXTRA_TEXT, txt.getText().toString());//place your text here startActivity(Intent.createChooser(waIntent, "Share with")); } catch (PackageManager.NameNotFoundException e) { Toast.makeText(SingleItemView.this, "telegram not installed", Toast.LENGTH_SHORT).show(); }
source share