使用setView(int layoutresid)时,如何从AlertDialog中获取膨胀的视图



我使用此代码创建自定义walldialog:

val dialog = AlertDialog.Builder(context)
            .setView(R.layout.layout)
            .create()

问题是我无法获得夸张的视图。 dialog.findViewById(R.id.a_view_in_the_layout)返回null。

另外,我可以使用.setView(View.inflate(context, R.layout.layout, null),但这有时会使对话框填充屏幕并占用比setView(int layoutResId)更多的空间。

如果我没记错的话, create设置了对话框,但是在需要显示之前,它的布局不会夸大。尝试先调用show,然后找到您要寻找的视图。

val dialog = AlertDialog.Builder(context)
            .setView(R.layout.layout)
            .create()
dialog.show() // Cause internal layout to inflate views
dialog.findViewById(...)

只是自己夸大了布局(其Java代码,但我想您知道该怎么做):

AlertDialog.Builder dialog = new AlertDialog.Builder(context);
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE );
View view = inflater.inflate( R.layout.layout, null );
dialog.setView(view);
dialog.create().show();

您的膨胀视图现在为view,您可以使用它来找到其他视图,例如:

EditText editText = view.findViewById(R.id.myEdittext);

而不是使用alert dialog使用simple Dialog

final Dialog dialog = new Dialog(context);
        dialog.setContentView((R.layout.layout);
        dialog.getWindow().setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));
        TextView tvTitle = (TextView) dialog.findViewById(R.id.tvTitle);
        tvTitle.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
            }
        });

您不必夸大视图。

尝试这个;

View dialogView; //define this as a gobal field
dialogView = LayoutInflater.from(context).inflate(R.layout.your_view, null);
AlertDialog.Builder builder = new AlertDialog.Builder(context);
builder.setTitle("Title");
builder.setView(dialogView);
View yourView = dialogView.findViewById(R.id.a_view_in_the_layout);
TextView yourTextView = dialogView.findViewById(R.id.a_textView_in_the_layout);
Button yourButton = dialogView.findViewById(R.id.a_button_in_the_layout);

相关内容

  • 没有找到相关文章

最新更新