Intent whatsapp = new Intent(Intent.ACTION_SEND);
whatsapp.setType("text/plane");
whatsapp.setPackage("com.whatsapp");
whatsapp.putExtra(Intent.EXTRA_TEXT,list.get(position).getText());
context.startActivity(whatsapp);
Intent whatsapp = new Intent(Intent.ACTION_SEND);
whatsapp.setType("text/plane");
whatsapp.setPackage("com.whatsapp");
whatsapp.putExtra(Intent.EXTRA_TEXT,list.get(position).getText());
context.startActivity(whatsapp);
Comments
Post a Comment