-1

配列内の値を示すダイアログ ボックスを表示したいだけです。次に、ボタンをクリックすると、選択したラジオボタンの値を取得してトーストに表示したいと思います。事前に答えてくれてありがとう!大変感謝しております。

package com.example.moredialogs;

import java.lang.reflect.Array;
import java.util.ArrayList;

import android.R.string;
import android.os.Bundle;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.view.Menu;
import android.widget.Toast;

public class Next extends Activity {

private Context mContext; 

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.next);

    mContext = this;


    AlertDialog.Builder builder = 
            new AlertDialog.Builder(mContext);
        builder.setTitle("Show dialog");

        final CharSequence[] choiceList = 
        {"Coke", "Pepsi" , "Sprite" , "Seven Up" };

        int selected = 0; 


        builder.setSingleChoiceItems(choiceList, selected, 
                new DialogInterface.OnClickListener() {

                    @Override
                    public void onClick(DialogInterface arg0, int arg1) {
                        // TODO Auto-generated method stub


                        // This is where I want the value to be selected


                    }


        });
        builder.setPositiveButton("Sounds Good", new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int id) {
                // User clicked OK, so save the mSelectedItems results somewhere
                // or return them to the component that opened the dialog

               // On button click I want the selected Item to go in here
            }

        });
        builder.show();
}

 }
4

2 に答える 2