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

Popular posts from this blog

javascript - Chart.js (Radar Chart) different scaleLineColor for each scaleLine -

apache - Error with PHP mail(): Multiple or malformed newlines found in additional_header -

java - Android – MapFragment overlay button shadow, just like MyLocation button -