0

こんにちは私はアンドロイド初心者です、そして私はこれで一週間立ち往生しています。どんな助けでもいただければ幸いです!私はたくさんの研究をしましたが、何が悪いのか理解できません。2台の電話でbluetoothchatサンプルコードを正常に実行し、bluetoothを介して正常に通信しました。また、メインアクティビティをボタンをクリックした後、ユーザー入力を受け入れるカスタムアラートダイアログを開き、入力をメインアクティビティに戻すスタンドアロンアプリを正常に作成して実行しました。しかし、alertdialogコードをBluetoothChatコードに書き込むと、ボタンをクリックしても何も起こりません。私は電話でデバッガーをステップスルーしようとしましたが、運がありませんでした。ボタンクリックを含むコードにステップアップしていないようです。表示中のエラーはありません。ボタンをクリックするとalertdialogがポップアップしないのはなぜですか?ここ'

public class BluetoothChat extends Activity implements OnClickListener{

  final Context context = this;
  private Button rButton;
  View rScreen;
  private EditText mAlertDialog;

  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    if(D) Log.e(TAG, "+++ ON CREATE +++");

    // Set up the window layout
    setContentView(R.layout.main);

    // Get local Bluetooth adapter
    mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();

    // If the adapter is null, then Bluetooth is not supported
    if (mBluetoothAdapter == null) {
      Toast.makeText(this, "Bluetooth is not available", Toast.LENGTH_LONG).show();
      finish();
      return;
    }

    //components from main.xml
    //When button is clicked, the alert dialog is pulled up
    rButton = (Button)findViewById(R.id.buttonr);
    mAlertDialog = (EditText)findViewById(R.id.edittextresultm);

    //add button listener
    rButton.setOnClickListener(new OnClickListener() {

      //@Override
      public void onClick_register(View view) {   

        String title = "title";
        String buttonOk = "OK";
        String buttonCancel = "Cancel";
        String madd, name;

        //get review.xml view
        LayoutInflater li = LayoutInflater.from(context);
        View rView = li.inflate(R.layout.review, null);

        //AlertDialog dialog;   
        AlertDialog.Builder adRegister = new AlertDialog.Builder(context);


        //set review.xml to adRegister builder
        adRegister.setView(rView);

        //set title
        adRegister.setTitle(title);


        //Set EditText views to get user input

        final EditText mField = (EditText)rView.findViewById(R.id.editTextm);
        final EditText nField = (EditText)rView.findViewById(R.id.editTextn);

        //set dialog message
        adRegister.setMessage("Message")
          .setCancelable(false)
          .setPositiveButton(buttonOk, new DialogInterface.OnClickListener() {

          public void onClick(DialogInterface dialog, int which) {

            String madd = mField.getText().toString();
            String name = nField.getText().toString();

            //get user input and set it to result on main activity
            mAlertDialog.setText(mField.getText());
          }
        })
        .setNegativeButton(buttonCancel, new DialogInterface.OnClickListener() {

          public void onClick(DialogInterface dialog, int which) {
            // TODO Auto-generated method stub
            //if this button is clicked, close current activity
            dialog.cancel();

          }
        });

        //Create alert dialog
        AlertDialog alertDialog = adRegister.create();
        //dialog= adRegister.create();
        //show it
        adRegister.show();
        //dialog.show();
      }

      public void onClick(View arg0) {
        // TODO Auto-generated method stub
      }
    });
  }
}
4

1 に答える 1