0

ユーザー入力を求めるポップアップ ダイアログが表示されます。

ユーザーが入力を入力して「OK」をクリックすると、フラグメントがユーザー入力をダイアログのすぐ後ろにあるアクティビティに戻すようにします。

について何か読んだことがありますonDismiss(DialogInterface dialog)。ただし、Java と Android の両方の新しい学習者であるため、正しく実装できません。

  1. 私のコードではハンドラーが実行されません。

  2. ハンドラーが実行された後でも、引数からユーザー入力を取得する方法がわかりません。これは、対処方法がわからないdialogタイプであるためです。DialogInterface

以下は私のコードスニペットです。

活動面:

    public class CalibrationActivity extends Activity implements SensorEventListener, DialogInterface.OnDismissListener {

    ...

    protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_calibration);

            buttonInit();
            sensorInit();
        }


        private void buttonInit() {

            // start calibrating button
            startCalibratingButton = (Button) findViewById(R.id.button1);
            startCalibratingButton.setOnClickListener(new OnClickListener() {
                public void onClick(View v) {

                    startCalibrationFlag = true;

                    Toast.makeText(CalibrationActivity.this, "Please walk " + Constant.CALIBRATION_STEP_NUMBER + " steps and press the 'Done Calibrating' button", Toast.LENGTH_SHORT).show();
                    startCalibratingButton.setEnabled(false);
                    doneCalibratingButton.setEnabled(true);
                }
            });

            // done calibrating button
            doneCalibratingButton = (Button) findViewById(R.id.button2);
            doneCalibratingButton.setOnClickListener(new OnClickListener() {
                public void onClick(View v) {

                    startCalibrationFlag = false;

                    RequireDistanceDialogFragment requireDistanceDialogFragment = new RequireDistanceDialogFragment();
                    requireDistanceDialogFragment.setCancelable(false);
                    requireDistanceDialogFragment.show(getFragmentManager(), ALARM_SERVICE); // dialog pops up that leads the new user to calibrate

                // Error Here: "The method setOnDismissListener(new OnDismissListener(){}) is undefined for the type RequireDistanceDialogFragment"
                    requireDistanceDialogFragment.setOnDismissListener(new OnDismissListener() {

                        public void onDismiss(DialogInterface dialog) {
                            LoadingActivity.this.finish();
                        }
                    });

                }
            });

            startCalibratingButton.setEnabled(true);
            doneCalibratingButton.setEnabled(false);
        }

        // called when the dialog is dismissed
        public void onDismiss(DialogInterface requireDistanceDialogFragment) {

// Error Here: The method getDistanceEntered() is undefined for the type DialogInterface
                double userInput = requireDistanceDialogFragment.getDistanceEntered();
                processTheUserInputHere();

        }

    }

ダイアログ側:

package com.example.drsystem;

import android.app.AlertDialog;
import android.app.Dialog;
import android.app.DialogFragment;
import android.content.DialogInterface;
import android.os.Bundle;
import android.text.Editable;
import android.text.InputType;
import android.widget.EditText;
import android.widget.Toast;

public class RequireDistanceDialogFragment extends DialogFragment {

    private Editable distance;
    private boolean distanceIsEntered = false;

    public Dialog onCreateDialog(Bundle savedInstanceState) {

        // Use the Builder class for convenient dialog construction
        AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
        final EditText input = new EditText(getActivity());
        input.setInputType(InputType.TYPE_CLASS_NUMBER | InputType.TYPE_NUMBER_FLAG_DECIMAL);

        builder.setTitle("Distance is required to calibrate the stride length estimation.").setMessage("Distance (in m) for these " + Constant.CALIBRATION_STEP_NUMBER + " steps?").setView(input).setPositiveButton("Ok", new DialogInterface.OnClickListener() {

            public void onClick(DialogInterface dialog, int whichButton) { // click ok

                distanceIsEntered = true;
                distance = input.getText();
            }
        }).setNegativeButton("Cancel", new DialogInterface.OnClickListener() {

            public void onClick(DialogInterface dialog, int whichButton) { // click cancel

                Toast.makeText(getActivity(), "Calibration not done", Toast.LENGTH_SHORT).show();
            }
        });

        // Create the AlertDialog object and return it
        return builder.create();
    }

    // if the user has not entered the distance yet, the distance returned is -1
    public double getDistanceEntered() {

        if (distanceIsEntered)
            return Double.parseDouble(distance.toString());
        else
            return -1;
    }

}

私が抱えている2つの問題を解決することで、それを修正するのを手伝ってもらえますか

または、これを達成するための新しい方法を提案できます。

4

1 に答える 1