1

我正在使用一个对话框来显示 7 张图像。对话框完美显示 6 张图像并且第 7 张(在 6 张图像的右侧)被截断的问题。即使我用按钮替换第 7 张图像,它仍然会被截断,就好像对话框具有固定大小一样。对话框不会根据我添加的视图展开吗?这真的很讨厌

dialog = new Dialog(this);// this would refer to the context of the current activity
            dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
            dialog.setContentView(R.layout.origpickgame);
            ColorDrawable dialogColor = new ColorDrawable(Color.GRAY);
            dialogColor.setAlpha(100);
            dialog.getWindow().setBackgroundDrawable(dialogColor);
            dialog.getWindow().setGravity(Gravity.TOP);
4

0 回答 0