android : how to align message in alertDialog?

前端 未结 8 814

i have to align text by middle in android alertdialog. but i cannot find way... anyone knows how to this?

8条回答
  •  误落风尘
    2020-12-15 05:00

    You would have to use one of the constructors provided for AlertDialog in Android, while creating one.

    AlertDialog(Context context, int theme) Construct an AlertDialog that uses an explicit theme.

    This link will help you. Since you want the text to be centered, you would want to give the gravity attribute, the value 'center'.

提交回复
热议问题