如何设置AlertDialog中的CENTER标题?
我有代码:
return new AlertDialog.Builder(getActivity())
.setTitle("Warning!")
.setMessage("message!")
.setPositiveButton("yes ",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
等等... 如何 .setTitle("Warning!") 设置到 CENTER?
Possible Duplicate:
Custom dialog on Android: How can I center its title?
I have code:
return new AlertDialog.Builder(getActivity())
.setTitle("Warning!")
.setMessage("message!")
.setPositiveButton("yes ",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
etc...
how .setTitle("Warning!") set to the CENTER?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法将标题置于默认警报对话框的中心。
您将需要创建一个自定义对话框以使标题居中。
此处的答案描述了它是如何实现的完毕。
You cannot center the title in the default alert dialog.
You will need to create a custom dialog in order to center the title.
The answers here describe how it can be done.