これは、Google がカスタム アラート ダイアログを作成するために使用すると言っているコードです (独自のレイアウトを作成し、そのレイアウトを setContentView に使用するように指示されています)。
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
// Get the layout inflater
LayoutInflater inflater = getActivity().getLayoutInflater();
// Inflate and set the layout for the dialog
// Pass null as the parent view because its going in the dialog layout
builder.setView(inflater.inflate(R.layout.dialog_signin, null))
// Add action buttons
.setPositiveButton(R.string.signin, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int id) {
// sign in the user ...
}
})
.setNegativeButton(R.string.cancel, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
LoginDialogFragment.this.getDialog().cancel();
}
});
return builder.create();
}
次に、Google はこのクラスのインスタンスを別のクラスで作成し、それを show() メソッドで表示するように指示しますが、show メソッドにはフラグメント マネージャーが必要であり、フラグメント マネージャーを作成しようとするとエラーが発生します。
手順は次のとおりです http://developer.android.com/guide/topics/ui/dialogs.html#CustomLayout
そして、新しいアクティビティを開始する警告ダイアログにスピナーを追加する必要があります
誰かがこれを機能させる方法(ダイアログをポップアップさせる)を見つけて投稿できれば、それは素晴らしいことです