如何在自定义对话框中传递自动完成窗口小部件片段?到目前为止,我已经成功地将自动完成片段传递到了片段中,现在的问题是如何在自定义对话框中传递该片段?每次我尝试放
// Initialize the AutocompleteSupportFragment.
AutocompleteSupportFragment autocompleteFragment = (AutocompleteSupportFragment)
getChildFragmentManager().findFragmentById(R.id.autocomplete_fragment);
autocompleteFragment.setPlaceFields(Arrays.asList(Place.Field.ID, Place.Field.NAME));
autocompleteFragment.setOnPlaceSelectedListener(new PlaceSelectionListener() {
@Override
public void onPlaceSelected(Place place) {
// TODO: Get info about the selected place.
Log.i("PLACESAPI", "Place: " + place.getName() + ", " + place.getId());
}
@Override
public void onError(Status status) {
// TODO: Handle the error.
Log.i("PLACESAPI", "An error occurred: " + status);
}
});
在对话框中,弹出错误消息,提示我不能使用getChildFragmentManager。
答案 0 :(得分:0)
我已经解决了我的问题,我使用了DalogFragment并将小部件传递给我的dialogfragment xml布局文件以及DialogFragment内部的代码。我希望这可以帮助任何人。