790 B
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);
}