Android HTML Element Create createHtmlLink(String title, String url)

Here you can find the source of createHtmlLink(String title, String url)

Description

create Html Link

License

Open Source License

Declaration

public static String createHtmlLink(String title, String url) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static String createHtmlLink(String title, String url) {
        String html = "<a href =\"" + url + "\" >" + title + "</a>";
        return html;
    }// w  w w  . ja v  a2 s  . c  o  m
}

Related

  1. makeHtmlNewLine()
  2. makeHtmlSpace(int number)