我正在寻找一种获取自定义对话框大小的方法。我经历了这个问题,但给出的唯一答案是没有用的,因为如果我尝试mDialog.getWindow().getAttributes().height;
它只会返回-2,这是WRAP_CONTENT
我设置为对话框的属性的常量。我怎样才能得到它的大小。我想知道背景图像的 siye。
问问题
16972 次
4 回答
21
试试看:
mDialog.getWindow().getDecorView().getHeight()
于 2012-11-22T15:17:42.290 回答
13
实际上,在 Android 中它不像在 iOS 中那样工作 - 您无法获得其View
自身的大小,但是您可以做的是询问该视图的ROOT布局的大小。
例如:
myDialog.this.findViewById(R.id.dialog_root_layout).getHeight());
于 2012-11-22T15:12:28.620 回答
7
@Kormilsev Anatoliy 的回答是正确的,我只是在改进。因此,在您从 Dialog 类继承的类中,只需覆盖该方法:
@Override
public void onWindowFocusChanged (boolean hasFocus) {
super.onWindowFocusChanged(hasFocus);
height = getWindow().getDecorView().getHeight();
}
于 2015-10-24T17:33:02.580 回答
3
以防万一,如果您有自己的自定义对话框的 XML 布局。
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/dialog_main_layout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:background="@color/primaryBackground">
/* whatever you want here */
</android.support.constraint.ConstraintLayout>
活动中:
final Dialog dialog = new Dialog(this);
dialog.setContentView(R.layout.popup_gameover);
dialog.setOnShowListener(new DialogInterface.OnShowListener() {
@Override
public void onShow(DialogInterface d) {
View view = dialog.findViewById(R.id.dialog_main_layout);
int width = view.getWidth();
int height = view.getHeight();
...
}
});
这width
和height
预期的完全一样。
于 2018-08-21T03:34:25.523 回答