如何开始聊天屏幕在Skype从我的应用程序



我需要用我的Skype ID从我的应用程序打开Skype聊天屏幕。我看到了一些类似的问题

打开聊天屏幕Skype从其他应用程序

http://developer.skype.com/skype-uris/skype-uri-tutorial-android

上面的教程解释了如何打开应用程序,但是我不知道如何传递我的Skype ID并开始聊天屏幕。

是否有办法做到这一点?如果有办法怎么做呢?

编辑

我遵循下面的解决方案。它只是打开skype应用程序,但它没有加载聊天屏幕。你能告诉我哪里出错了吗?

   public class About extends MainActivity implements android.view.View.OnClickListener
        {
            Button fb;
            static String TAG = "remote it";
    String mySkypeUri = "skype:aruzev?chat";
            @Override
            protected void onCreate(Bundle savedInstanceState)
            {
                // TODO Auto-generated method stub
                super.onCreate(savedInstanceState);
                LayoutInflater inflater = (LayoutInflater) this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
                View contentView = inflater.inflate(R.layout.about, null, false);
                mDrawer.addView(contentView, 0);
                fb = (Button) contentView.findViewById(R.id.fb);
                fb.setOnClickListener(this);
            }

            public void onClick(View v)
            { // TODO Auto-generated method stub
                if (v.getId() == R.id.fb)
                {
              initiateSkypeUri(getApplicationContext(), mySkypeUri));
                }
            }
    public void initiateSkypeUri(Context myContext, String mySkypeUri)
        {
            // Make sure the Skype for Android client is installed
            if (!isSkypeClientInstalled(myContext))
            {
                goToMarket(myContext);
                return;
            }
            // Create the Intent from our Skype URI
            Uri skypeUri = Uri.parse(mySkypeUri);
            Intent myIntent = new Intent(Intent.ACTION_VIEW, skypeUri);
            // Restrict the Intent to being handled by the Skype for Android client
            // only
            myIntent.setComponent(new ComponentName("com.skype.raider", "com.skype.raider.Main"));
            myIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            // Initiate the Intent. It should never fail since we've already
            // established the
            // presence of its handler (although there is an extremely minute window
            // where that
            // handler can go away...)
            startActivity(myIntent);
            return;
        }
        public void goToMarket(Context myContext)
        {
            Uri marketUri = Uri.parse("market://details?id=com.skype.raider");
            Intent myIntent = new Intent(Intent.ACTION_VIEW, marketUri);
            myIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            myContext.startActivity(myIntent);
            return;
        }
        public boolean isSkypeClientInstalled(Context myContext)
        {
            PackageManager myPackageMgr = myContext.getPackageManager();
            try
            {
                myPackageMgr.getPackageInfo("com.skype.raider", PackageManager.GET_ACTIVITIES);
            }
            catch (PackageManager.NameNotFoundException e)
            {
                return (false);
            }
            return (true);
        }
        }

你的变量mySkypeURI应该是一个字符串,如果你想开始聊天,那么这个字符串应该看起来像:

skype:<insert your SkypeName>?chat

代码将解析该字符串并将其嵌入到intent中。

艾伦史密斯项目经理Skype开发者/Skype TXLync合作伙伴工程

最新更新