I'm new in android intent
System , i want send a text message from my special application to telegram application !
Notic: i want send a TEXT
from my application to telegram installed in this device only NOT other peaple telegrams ,
when i installed my telegram application i must enter a text and time . and on this time my telegram must open and show my text to myself.
this link can not help me because it want to send message to special contact not to self ! Android send message through telegram?
And i tried this but it'snot my goal
Intent myIntent = new Intent(Intent.ACTION_SEND);
myIntent.setType("text/plain");
myIntent.setPackage(appName);
myIntent.putExtra(Intent.EXTRA_TEXT, msg);//
mUIActivity.startActivity(Intent.createChooser(myIntent, "Share with"));
pls give me a solution or link about hove i can send text/String to messanger apps by Intent from my special application in Android
Thanks