2
You can increase the font size of a message I display inside a AlertDialog
?
Code:
AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
builder.setMessage("Gasolina");
builder.setTitle("Sua melhor opção é:");
builder.setPositiveButton("OK",null);
builder.show();
added the code to the question
– denis
Denis, I changed my answer with the correct code for you to use.
– Leonardo Dias