shixianjie
Results
1
issues of
shixianjie
我尝试创建了一个全屏对话框用来实现搜索功能, 我希望对话框中的内容可以在下次显示的时候保留, 我的代码是: `private void showSearchDialog(){ if (mSearchDialog == null) { mSearchDialog = FullScreenDialog.show(this, R.layout.dialog_search, new FullScreenDialog.OnBindView() { public void onBind(FullScreenDialog dialog, View rootView) { } }).setTitle("搜索").setOkButton("关闭"); } else {...