1

我需要myapp://app.myapp.com/data通过 WhatsApp 发送带有自定义方案的 url()。但在 WhatsApp 中,它没有将自定义方案( myapp://) 显示为链接。仅app.myapp.com/data显示为链接。我试过下面的代码:

Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_TEXT,"Please check this link: "+Html.fromHtml("myapp://app.myapp.com/data"));
            intent.setType("text/plain");
startActivity(Intent.createChooser(intent, "Select Chooser to send friend"));

是否可以在 android 平台的 WhatsApp 上发送带有自定义方案的链接?

4

1 回答 1

-1

试试这个代码:

 Whatsappbutton.setOnClickListener(new OnClickListener() {

            @SuppressLint("NewApi") @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
                try {
                    Tracker t = ((Analytics) getActivity().getApplication())
                            .getTracker(TrackerName.APP_TRACKER);

                    t.send(new HitBuilders.EventBuilder()
                            .setCategory(getString(R.string.ic_Category))
                            .setAction(getString(R.string.ic_action))
                            .setLabel(getString(R.string.ic_labelwhatsapp)).build());
                } catch (Exception e) {
                    Toast.makeText(getActivity().getApplicationContext(),
                            "Error" + e.getMessage(), 1).show();
                }
                Toast.makeText(getActivity(), R.string.invite_friends_toast_after_share, Toast.LENGTH_LONG).show();

                final String shareBody = getResources().getString(R.string.invite_friends_market_url);
                try {
                    Intent shareToWhatsApp = new Intent(Intent.ACTION_SEND);
                    shareToWhatsApp.setType("text/plain");



       shareToWhatsApp.putExtra(android.content.Intent.EXTRA_TEXT, 

       shareBody);

                    shareToWhatsApp.setClassName("com.whatsapp",  

                   "com.whatsapp.ContactPicker");
                    startActivity(shareToWhatsApp);
                } catch (Exception e) {
                    Intent shareGeneric = new Intent(Intent.ACTION_SEND);
                    shareGeneric.setType("text/plain");
                    shareGeneric.putExtra(android.content.Intent.EXTRA_TEXT, 

                    shareBody);

                    startActivity(Intent.createChooser(shareGeneric,    
   getResources().getString(R.string.invite_friends_share_chooser)));
                }

            }
        });
于 2016-05-02T11:00:23.787 回答