Sending message through WhatsApp

前端 未结 23 2214
萌比男神i
萌比男神i 2020-11-22 09:42

Since I found some older posts, that tell that whatsapp doesn\'t support this, I was wondering if something had changed and if there is a way to open a whatsapp \'chat\' wit

23条回答
  •  渐次进展
    2020-11-22 10:24

    Check this code,

        public void share(String subject,String text) {
         final Intent intent = new Intent(Intent.ACTION_SEND);
    
    String score=1000;
         intent.setType("text/plain");
         intent.putExtra(Intent.EXTRA_SUBJECT, score);
         intent.putExtra(Intent.EXTRA_TEXT, text);
    
         startActivity(Intent.createChooser(intent, getString(R.string.share)));
    }
    

提交回复
热议问题