use of io.github.hidroh.materialistic.widget.AsteriskSpan in project materialistic by hidroh.
the class HelpListView method makeAsteriskSpan.
private Spannable makeAsteriskSpan() {
SpannableString sb = new SpannableString("*");
sb.setSpan(new AsteriskSpan(getContext()), sb.length() - 1, sb.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
return sb;
}
Aggregations