I am using the AlertDialog.Builder like the following.
AlertDialog.Builder builder = new AlertDialog.Builder(activity);
builder.setMessage("test")
.setNegativeButton("Talk Abalone", dialogClickListener)
.setNeutralButton("Love the Abalone", dialogClickListener).show();
There is some extra padding at the bottom when the length of the text is at "Keep the Abalone" and "Edit Abalone" combined. If I remove a word, then the padding at the bottom no longer exist and everything works fine. If the language is in other language, making the length of the string shorter or longer, there is no extra padding for shorter string or the two options just stack together. Is this a bug in AlertDialog.Builder? Any idea on how to fix it? Thank you