So öffnen Sie WhatsApp mithilfe einer Absicht in Ihrer Android -App

String url = "https://api.whatsapp.com/send?phone="+number;
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);
Ali Moussa