I tried to make an intent like calling intent
Intent skype = new Intent("android.intent.action.VIEW");
skype.setData(Uri.parse("skype:" + "user_name" + "?message=ddd"));
startActivity(skype);
and it did not work.
I tried to make an intent like calling intent
Intent skype = new Intent("android.intent.action.VIEW");
skype.setData(Uri.parse("skype:" + "user_name" + "?message=ddd"));
startActivity(skype);
and it did not work.
The problem with official Android SDK, as well as Skype URI's is that they not allow to share predefined message. You can just open chat with list of users (or empty to create a new one). If you want to explicity share some text with Skype you can try to use system Intents with Skype package name (remember to check if this package name is installed, otherwise startActivity call will crash your app):
val SKYPE_PACKAGE_NAME = "com.skype.raider"
fun shareSkype(context: Context, message: String) {
if (!isAppInstalled(context, SKYPE_PACKAGE_NAME)) {
openAppInGooglePlay(context, SKYPE_PACKAGE_NAME)
return
}
val intent = context.packageManager.getLaunchIntentForPackage(SKYPE_PACKAGE_NAME)
intent.action = Intent.ACTION_SEND
intent.putExtra(Intent.EXTRA_TEXT, message)
intent.type = "text/plain"
context.startActivity(intent)
}
fun isAppInstalled(context: Context, packageName: String): Boolean {
val packageManager = context.packageManager
try {
packageManager.getPackageInfo(packageName, PackageManager.GET_ACTIVITIES)
} catch (e: PackageManager.NameNotFoundException) {
return false
}
return true
}
If Skype or other Android messaging applications do not have publicly available Intents, it will not be possible to do so until they are available.
You could however try to find a proxy service that skype uses to call within your application as a means to send messages.
http://developer.skype.com/skype-uris/reference#uriChats
Notice:
Caveats:
The optional topic argument applies to multi-chats only.
Special characters in the topic argument value—specifically whitespace—must be escaped.
Mac OS X: ignores any topic argument.
iOS: not supported.
Android: recognizes the initial participant only; multi-chats are not supported.
Android Docs - http://developer.skype.com/skype-uris/skype-uri-tutorial-android