String message = "<p>Thank you for watching!</p>" +
"<p>My Website : <a href=\"https://www.lautturi.com\">Lautturi</a></p>";
AlertDialog alertDialog = new AlertDialog.Builder(this)
.setTitle("Hello")
.setMessage(Html.fromHtml(message))
.setPositiveButton("OK", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
}
})
.show();