Android 怎么防止AlertDialog Button按钮字母变大写

   一种方式如下: 

        mAlertDialog.show()后:   

        mAlertDialog.getButton(DialogInterface.BUTTON_NEGATIVE).setAllCaps(false);
        mAlertDialog.getButton(DialogInterface.BUTTON_POSITIVE).setAllCaps(false);

你可能感兴趣的:(android)