CustomEditor
CustomEditor copied to clipboard
Does this support font changer ?
DO you have any idea if we can change font by font selector/spinner ?
Ok, now I can do this by myself.
CustomEditText.java (support multiple typeface) https://gist.github.com/korrio/3e54a23d538ac587f1ca
I modified the CustomEditText with CalligraphyTypefaceSpan from (https://github.com/chrisjenx/Calligraphy)
Usage:
int selectionStart = et.getSelectionStart();
int selectionEnd = et.getSelectionEnd();
// et (CustomEditText)
et.setColor(Color.RED, selectionStart, selectionEnd);
et.setFont(TypefaceUtils.load(getActivity().getAssets(), "fonts/ThaiSansNeue-Black.ttf"),selectionStart,selectionEnd);