Below is the code for AlertDialog box. I am using this in google map. I want to add "See more" Hyperlink at the end of the message.. I don't know what I have missed so far to make the link work. Thanks for help in advance.
@Override
protected boolean onTap(int index) {
// TODO Auto-generated method stub
OverlayItem item = pinpoints.get(index);
AlertDialog.Builder dialog = new AlertDialog.Builder(c);
dialog.setTitle(item.getTitle());
dialog.setMessage(item.getSnippet()+"\n\n"+Html.fromHtml("<a href=\'http://www.nip.org.np\'>See more</a>"));
dialog.show();
return true;
}