警报对话框中按钮的大小
如何在不使用 xml 的情况下更改代码中 Alertdailog 中按钮的大小? 我没有使用视图..
谢谢 代码: alertbox3.setNeutralButton("取消",new DialogInterface.OnClickListener() { public void onClick(DialogInterfacedialog, int which) { } });
how can i change the size of button in alertdailog in code without using xml ?
I'm not using view ..
Thank you
The code :alertbox3.setNeutralButton("Cancel",new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int which) { } });
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
你可以尝试这个代码:
和
http://developer.android.com/reference/android/widget/Button。 html
看看这个链接。 Link1 和 LInk2
you may try this code:
and
http://developer.android.com/reference/android/widget/Button.html
look at this link aslo . Link1 and LInk2
您应该为您的案例使用 customView 来更改按钮布局。请参阅以下链接,了解如何创建您自己的警报对话框视图。
如何实现自定义 AlertDialog 视图
you should use a customView for your case to change the button layout. see the following link on how to make your own view for alertDialog.
How to implement a custom AlertDialog View
试试这个:
https://stackoverflow.com/a/15910202/305135
Try this :
https://stackoverflow.com/a/15910202/305135
你为什么想要?系统将代表您构建一个标准对话框布局,该布局遵循用户期望和熟悉的约定。一般来说,您不应该竭尽全力来规避这一点。
Why do you want to? The system will construct a standard dialog layout on your behalf that follows conventions that the user expects and is familiar with. In general you should not go out of your way to circumvent this.