android alert Dialog with html code

https://‮w‬ww.lautturi.com
android alert Dialog with html code
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();
Created Time:2017-09-16 20:31:21  Author:lautturi