最佳答案
在 AlertDialog 上的 Android 文档中,它提供了以下在 AlertDialog 中设置自定义视图的说明和示例:
如果你想显示一个更复杂的视图,查找 FrameLayout 名为“ body”并将你的视图添加到其中:
FrameLayout fl = (FrameLayout) findViewById(R.id.body);
fl.add(myView, new LayoutParams(FILL_PARENT, WRAP_CONTENT));
首先,很明显,add()
是一个打印错误,意味着是 addView()
。
我对使用 Rid.body 的第一行感到困惑。它似乎是 AlertDialog 的 body 元素... ... 但是我不能仅仅在我的代码 b/c 中输入它,它会出现编译错误。在哪里可以定义或分配 R.id.body?
这是我的密码。我试图在构建器上使用 setView(findViewById(R.layout.whatever)
,但它不起作用。是因为我没有手动充气吗?
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("Title")
.setCancelable(false)
.setPositiveButton("Go", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int id) {
EditText textBox = (EditText) findViewById(R.id.textbox);
doStuff();
}
});
FrameLayout f1 = (FrameLayout)findViewById(R.id.body /*CURRENTLY an ERROR*/);
f1.addView(findViewById(R.layout.dialog_view));
AlertDialog alert = builder.create();
alert.show();