We know about the Linnkify class in android. Have you ever wondered that we can use this same class to add a market link?
Here is a sample code for the same.


TextView txtView = (TextView) findViewById(R.id.linkme);

Pattern WordMatcher = Pattern.compile("\\b[A-Z]+[a-z0-9]+[A-Z][A-Za-z0-9]+\\b");
String MarketURL = "market://details?id=com.schogini.geeta.pack&hl=pt_PT";
Linkify.addLinks(txtView, WordMatcher, MarketURL);