jaysh / xposed-whatsapp

Add functional improvements to the mainstream WhatsApp Android application.
MIT License
40 stars 13 forks source link

Interact Intent? #37

Open presttec opened 6 years ago

presttec commented 6 years ago

I use the code to access contact: Intent intent = new Intent("android.intent.action.MAIN"); intent.setAction(Intent.ACTION_SEND); intent.setType("text/plain"); intent.putExtra(Intent.EXTRA_STREAM, Uri.parse(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS) + "/" + imageName)); intent.putExtra("jid", phoneNumber + "@s.whatsapp.net"); //phone number without "+" prefix! intent.setPackage("com.whatsapp");

I need help to capture the submit button(com.whatsapp:id/send)