Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在颤动中获得 AlertDialog 的确切高度和宽度。
我不明白你的目的是什么,而是指定一个尺寸来测量它。
在警报对话框的上下文中,您可以使用以下内容将其他组件放入其中。使用以下代码,您可以获得您认为是上下文的 UI 组件内的测量值。
alert_dialog_height=MediaQuery.of(context).size.height; alert_dialog_width=MediaQuery.of(context).size.width;
如果您需要在警报对话框的中间高度放置一些东西,只需使用
alert_dialog_height/2