Markwon/docs-old/LinkResolver.md
2018-08-20 16:38:39 +03:00

790 B

LinkResolver

Link resolver is used to navigate to clicked link. By default LinkResolverDef is used and it just constructs an Intent and launches activity that can handle it, or silently fails if activity cannot be resolved. The main interface:

public interface Resolver {
    void resolve(View view, @NonNull String link);
}

Contents