Puedes crear un intent para enviar una direccion web por email, whatspp, mensaje, ...
Haber si te vale esto:
Código:
Intent intent = new Intent(android.content.Intent.ACTION_SEND);
intent.putExtra(android.content.Intent.EXTRA_TEXT, "http://www.htcmania.com/");
intent.setType("text/plain");
startActivity(Intent.createChooser(intent, "Compartir link"));
