为什么我的设计布局编辑器和仿真器看起来如此不同?

时间:2018-09-25 22:24:39

标签: xml android-layout android-studio

我需要帮助弄清楚为什么我的布局编辑器和设计视图看起来如此 different

以下是带有相关自定义布局的xml code。 该布局应该像一个弹出菜单。

1 个答案:

答案 0 :(得分:0)

您必须显式设置对话框的尺寸,否则它将压缩空格。因此,将其指定如下:-

ViewGroup.LayoutParams params = yourDialog.getWindow().getAttributes(); params.width = ViewGroup.LayoutParams.MATCH_PARENT; params.height = ViewGroup.LayoutParams.WRAP_CONTENT; // or a value specified in dimensions like R.dimen.custom_width