0
I have a text and put it in a dialog , how do I not keep showing the tag but the effect of it
AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(context);
alertDialogBuilder.setMessage(listenerItem.descricao);
alertDialogBuilder.setPositiveButton(R.string.voltar,null);
AlertDialog alertDialog = alertDialogBuilder.create();
alertDialog.show();
description has a string with this text
Tries
<strong>
. (I’m kicking: I’m 0 on Android =)– Miguel Angelo
How are you setting the Dialog text? You can demonstrate the code?
– Fernando Leal
I made the change
– Ilgner de Oliveira
http://stackoverflow.com/questions/9935692/how-to-set-part-of-text-to-bold-when-using-alertdialog-setmessage-in-android
 
 See if this helps, I think it’s the same problem.
– Felipe Jorge
http://stackoverflow.com/questions/8395931/how-to-display-the-html-formatted-text-in-the-popup-box-using-alert-dialog-build
– Daniel Omine
@Ilgnerdeoliveira, I updated my answer with your case. Check if it helps you.
– Fernando Leal