我想显示一个带有约 50 个自定义控件(开关按钮)的对话框。因此,最好的方法是在循环中以编程方式添加它们。我试图用一个包含唯一一个 GroupView 元素的布局制作一个 dilog:
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout
android:layout_height="match_parent"
android:layout_width="match_parent"
android:orientation="vertical"
android:background="#AAAAAA"
xmlns:android="http://schemas.android.com/apk/res/android">
<ViewGroup
android:layout_height="500dp"
android:layout_width="500dp"
android:id="@+id/dlg_view"/>
</LinearLayout>
然后只需使用以下方法在其中添加我的控件: onCreateDialog(...) 方法:
AlertDialog.Builder builder = new AlertDialog.Builder(this);
LayoutInflater inflater = getLayoutInflater();
builder.setView(inflater.inflate(R.layout.geomap_menu, null))
.setPositiveButton("Ok", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int id) {
// sign in the user ...
}
})
.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
//LoginDialogFragment.this.getDialog().cancel();
}
});
Dialog res = builder.create();
ViewGroup dlgView = (ViewGroup)res.findViewById(R.id.dlg_view);
MyControl myControl = new MyControl(this);
dlgView.add(myControl);
但它不能以这种方式工作(它会抛出 InflateException)。我究竟做错了什么?