AlertDialog(テキストの編集)を作成しましたが、後で値を配列に挿入したいと思います。
void goToPage(){
AlertDialog.Builder alert = new AlertDialog.Builder(this);
alert.setTitle("Title");
alert.setMessage("Message");
final EditText input = new EditText(this);
alert.setView(input);
alert.setPositiveButton("Ok", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
String value = input.getText().toString();
int value2 = Integer.parseInt(value);
// Do something with value!
}
});
alert.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
// Canceled.
}
});
alert.show();
}
同じクラスで、私はこの配列を持っています:
array[20]
同じクラスで、共有していないため、value2を使用できません。
メソッド内のデータをクラス全体でどのように共有しますか?
ありがとう!