1

我有一个包含一定数量名称的 ListView,当我从 ListView 中单击一个项目时,我想要一个 ListDialog 弹出来显示数据库中的某些数据。那可能吗?

如果是(如果可能的话),在我单击列表对话框中的一个项目后,另一个列表对话框是否也可能从中出现?喜欢嵌套的列表对话框?

非常感谢!

4

1 回答 1

0

是的。只需获取一个新的 DialogFragment 调用一些带有一些参数的 newInstance() 来指定你想要的。

在您的列表活动中:

@Override
public void onListItemClick(ListView l, View v, int position, long id) {
    Cursor c = (Cursor) this.getListAdapter().getItem(position);
    int index = c.getInt(c.getColumnIndexOrThrow(COLUMN_NAME));
    DialogFragment newFragment = MyDialogFragment.newInstance(index);
    newFragment.show(getFragmentManager(), "dialog");
}

在您的 DialogFragment 类中:

static MyDialogFragment newInstance(int index) {
    MyDialogFragment f = new MyDialogFragment();
    Bundle args = new Bundle();
    args.putInt("index", index);
    f.setArguments(args);
    return f;
}

@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
    int index = getArguments().getInt("index");
    AlertDialog.Builder builder;
    Dialog dialog;
    builder = new AlertDialog.Builder(getActivity());
    final Cursor c = someDatabaseHelper.getData(index);
    builder.setCursor(c, new OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int which) {
            c.moveToPosition(which);
            int idWeWant = c.getInt(c.getColumnIndexOrThrow(STRING_ID_WE_WANT));
            //you can make another dialog here using the same method
        }
    });
    dialog = builder.create();
    return builder.create();
}
于 2013-05-06T03:18:04.880 回答