You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
有些人说默认按钮颜色 是浅蓝色,会让人误以为无法点击,如果可以自定义确定或者取消按钮的颜色,那将是极大的方便。
Some users think the defalut color of "OK" can't not click because the color is wathet blue. If we can custom
the color,it will be great convenience.
The text was updated successfully, but these errors were encountered:
Hi Jason,
You can customize button like this
Button confirmButton = (Button) alertDialog.findViewById(R.id.confirm_button);
confirmButton.setBackgroundResource(R.drawable.customized_button);
confirmButton.setPadding(0, 1, 0, 1);
confirmButton.setTextSize(getResources().getInteger(R.integer.text_words_small_int));
confirmButton.setWidth(getResources().getInteger(R.integer.button_small_int));
有些人说默认按钮颜色 是浅蓝色,会让人误以为无法点击,如果可以自定义确定或者取消按钮的颜色,那将是极大的方便。
Some users think the defalut color of "OK" can't not click because the color is wathet blue. If we can custom
the color,it will be great convenience.
The text was updated successfully, but these errors were encountered: