0

I have to develop an App like sticky note. User enter the text in Edittext, while selecting the text I will open the popup to select the option like (BOLD,ITALIC,UNDERLINE). when user select the options i need to change the selected text..

Does anyone go through this?

Thamim
  • 328
  • 3
  • 14

3 Answers3

2

If you have found a way the popup the options and how to retrieve the selected option(Bold, Italics, Underline), Then use this to format the text

private void formatText(EditText editText) {
    int end = editText.length();

    //get the selected text position as integer
    start = editText.getSelectionStart();
    stop = editText.getSelectionEnd();
    //check if the user started the selection from the left or the right
    if (start > stop) {
        stop = editText.getSelectionStart();
        start = editText.getSelectionEnd();
    }

        //gets the texts as html incase if previous formatting exists
    String textBefore = Html.toHtml(new SpannableString(text.getText().subSequence(0, start)));
    String selectedText = Html.toHtml(new SpannableString(text.getText().subSequence(start, stop)));
    String textAfter = Html.toHtml(new SpannableString(text.getText().subSequence(stop, end)));
    //Check if the selected text is empty ie if the did not select anything
    if (!selectedText.equals("") || start != stop) {
       //format the text
       String formatted = "<b>" + selectedText + "</b>";
       //build back the text
        StringBuilder builder = new StringBuilder();
        builder.append(textBefore);
        builder.append(Html.toHtml(formatted));
        builder.append(textAfter);

        editText.setText(Html.fromHtml(builder.toString()));
        //make the cursor stay after the selected text
        //you can also make the selected text selected here
        editText.setSelection(stop); 
        //clear your local variables
        textbefore = "";
        textafter = "";
        selectedText = "";
    }
    else {
        //you can also use snack bar here
        Toast.makeText(context, "select a text", Toast.LENGTH_SHORT).show();
    }
}

I think this should work for you

Bosco
  • 1,536
  • 2
  • 13
  • 25
0

Did you try this?

editText.setTypeface(null, Typeface.BOLD_ITALIC);
editText.setTypeface(null, Typeface.BOLD);
editText.setTypeface(null, Typeface.ITALIC);
editText.setTypeface(null, Typeface.NORMAL);
ZygD
  • 22,092
  • 39
  • 79
  • 102
eldivino87
  • 1,425
  • 1
  • 17
  • 30
0

Kotlin

Change Typeface.BOLD, Typeface.ITALIC or UnderlineSpan()

val spannableString: Spannable = SpannableStringBuilder(editText.text)
        spannableString.setSpan(
        StyleSpan(Typeface.BOLD),
            editText.selectionStart,
            editText.selectionEnd,
            0
        )
editText.setText(spannableString)