そのため、フラグメントでダイアログを作成中にエラーが発生しました
コードは次のとおりです。
public Dialog onCreateDialog(Bundle savedInstanceState) {
int title = getArguments().getInt("title");
return new AlertDialog.Builder(getActivity())
.setIcon(R.drawable.logo)
.setTitle(R.string.groupDetails_rename)
.setPositiveButton(R.string.ok,
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,
int whichButton) {
((GroupDetailsFragment) getSupportFragmentManager())
.doPositiveClick();
}
}).create();
}
((GroupDetailsFragment) getSupportFragmentManager())
の代わりに何を書くべきかについてエラーが発生していgetSupportFragmentManager()
ます。