谁能告诉我如何使用 onClickListener 使共享按钮生效

can anybody tell me how to get share button in action by using onClickListener

我想通过使用 oncicklistener.can 在 whatsapp 上共享带有共享按钮的字符串 oncicklistener.can 谁能帮我解决这个问题。

在你的setOnclickListener里面做这样的事情,

        Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
        sharingIntent.setType("text/plain");
        String shareBody = "your string";
        sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "your header text");
        sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, shareBody);
        startActivity(Intent.createChooser(sharingIntent, "your title"));

这基本上是发送带有主题行、body 和标题的短消息。