1packageorg.tm.archive.util; 2 3importandroidx.annotation.NonNull; 4 5publicinterfaceUrlClickHandler{ 6 7/**
8 * @return true if you have handled it, false if you want to allow the standard Url handling.
9 */10booleanhandleOnClick(@NonNullStringurl);11}