suraj0208 / WhatsappExtensions

Xposed module for WhatsApp
Apache License 2.0
100 stars 34 forks source link

Interact Intent? #50

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)