如何显示活动组中可扩展列表适配器的对话框

时间:2013-07-16 05:58:47

标签: expandablelistview android-datepicker

我使用的Activity组包含一个使用BaseExpandableListAdapter的Activity。它有2个方法组视图和子视图。在子视图中我想使用对话框(showDialog(DATE_PICKER))但代码没有到达方法

public Dialog onCreateDialog(int id) { }

1 个答案:

答案 0 :(得分:0)

请尝试在childView中使用它。

Dialog dialog = new Dialog();

dialog.setTitle( “标题”);

dialog.show();