我正在寻找一种获取自定义对话框大小的方法。我经历了this问题,但是给出的唯一答案是无用的,因为如果我尝试mDialog.getWindow().getAttributes().height;
它只返回-2,这是我设置为对话的WRAP_CONTENT
属性的常量。我怎样才能得到它的大小。我想知道背景图像的siye。
答案 0 :(得分:18)
试一试:
mDialog.getWindow().getDecorView().getHeight()
答案 1 :(得分:12)
实际上,在Android中它并不像在iOS中那样工作 - 你无法获得View
本身的大小,但你可以做的是要求大小该视图的 ROOT 布局。
e.g:
myDialog.this.findViewById(R.id.dialog_root_layout).getHeight());
答案 2 :(得分:5)
@Override
public void onWindowFocusChanged (boolean hasFocus) {
super.onWindowFocusChanged(hasFocus);
hight = getWindow().getDecorView().getHeight();
}
答案 3 :(得分:1)
如果您有自己的自定义对话框XML布局。
duplicatelist = yourlist.copy()
活动中:
<?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
确实符合预期。