I just saw this post (How can I change the color of AlertDialog title and the color of the line under it) and I doubt if my title get a variable ... how I can use the first solution to change the color?
This is my code:
AlertDialog.Builder dialogo = new AlertDialog.Builder(ListadoBC.this);
dialogo.setTitle("¡"+listaBC.get(arg2).getFragilidad()+" !\n"+"¿Ha seguido esta recomendación?");
And I want that this sentence ("¡"+listaBC.get(arg2).getFragilidad()+" !\n")
appears in red using something like this () alert.setTitle( Html.fromHtml("<font color='#FF7F27'>Set IP Address</font>"));
... is it possible?