Skype chat window is not opening by using Skype Id of user after login in android -
i implementing skype integration in android application. have requirement open chat window of skype using skype id of user. have done successfully, problem when logged out skype , open the skype android application using user id redirecting login screen , after login same user id, skype application goes in background , redirect android application. want open chat window of skype when logged in id opening chat window. please suggest me, how can implement ?
can show code using show skype intent?
it should similar :
intent skypeintent = new intent("android.intent.action.view"); skypeintent.setdata(uri.parse("skype:" + user_name)); startactivity(skypeintent);
in manifest need following intent filter :
<intent-filter> <action android:name="android.intent.action.view" /> <category android:name="android.intent.category.default" /> <data android:scheme="skype" /> </intent-filter>
Comments
Post a Comment