5

次へと閉じるボタンと「二度と表示しない」ためのチェックボックスを含む AlertDialog を作成しようとしています。DialogFragment のサポート ライブラリを使用します。次のコードは問題なく動作しますが、この AlertDialog に独自の xml レイアウトを使用したいと考えています。

    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {
        int title = getArguments().getInt("num");

        AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());

                builder.setTitle("ASDASDAS")
                .setPositiveButton(R.string.hello_world,
                    new DialogInterface.OnClickListener() {
                        public void onClick(DialogInterface dialog, int whichButton) {
                            ((MainActivity)getActivity()).doPositiveClick();
                        }
                    }
                )
                .setNegativeButton(R.string.cancel,
                    new DialogInterface.OnClickListener() {
                        public void onClick(DialogInterface dialog, int whichButton) {
                            ((MainActivity)getActivity()).doNegativeClick();
                        }
                    }
                );
                return builder.create();
    }

この AlertDialog を作成するために独自の xml レイアウトを使用することは可能ですか?

4

3 に答える 3

6

これは、独自の xml レイアウトを使用して DialogFragment で完全にカスタムの AlertDialog を作成する方法です。

@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();
于 2013-05-20T10:35:17.360 に答える
1

AlertDialog.Builder#setView()を使用する

于 2013-05-20T01:58:14.757 に答える
1

次のようにダイアログを使用できます。

private void showIconsDlg(final int btnId) {
            // Use a custom style: IconsDialog
    final Dialog dlg = new Dialog(mContext, R.style.IconsDialog);
            // Use a custom layout: 
    dlg.setContentView(R.layout.your_custom_dlg);

    // Find and init Views
    GridView grid = (GridView) dlg.findViewById(R.id.icon_grid);


    grid.setOnItemClickListener(new OnItemClickListener() {

        @Override
        public void onItemClick(AdapterView<?> parent, View view,
                int position, long id) {
                            ...

        }
    });

    dlg.show();

}

これはテーマです: IconsDialog:

<style name="IconsDialog" parent="@android:style/Theme.Dialog">
    <item name="android:backgroundDimEnabled">true</item>
    <item name="android:windowBackground">@drawable/icons_dlg_bg</item>
    <item name="android:windowNoTitle">true</item>
</style>

R.layout.your_custom_dlg でカスタム アラート レイアウトを設定します。

于 2013-05-20T10:34:56.973 に答える