Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
Added in API level 1
public static interface

Linkify.TransformFilter

android.text.util.Linkify.TransformFilter

Class Overview

TransformFilter enables client code to have more control over how matched patterns are represented as URLs. For example: when converting a phone number such as (919) 555-1212 into a tel: URL the parentheses, white space, and hyphen need to be removed to produce tel:9195551212.

Summary

Public Methods
abstract String transformUrl ( Matcher match, String url)
Examines the matched text and either passes it through or uses the data in the Matcher state to produce a replacement.

Public Methods

public abstract String transformUrl ( Matcher match, String url)

Added in API level 1

Examines the matched text and either passes it through or uses the data in the Matcher state to produce a replacement.

Parameters
match The regex matcher state that found this URL text
url The text that was matched
Returns
  • The transformed form of the URL