Пожалуйста, кто-нибудь подскажет, как сохранить text selected
в EditText
(жирным, курсивом, цветом и т. Д.), Используя SharedPreferences .
Вот мой код:
int selectionStart = editTxt.getSelectionStart();
int selectionEnd = editTxt.getSelectionEnd();
SpannableStringBuilder stringBuilder = (SpannableStringBuilder) editTxt.getText();
TextAppearanceSpan styleRed_Bold = new TextAppearanceSpan(getBaseContext(), R.style.CustomStyle); stringBuilder.setSpan(styleRed_Bold , selectionStart , selectionEnd , 0);