0
次の操作を実行すると、エラーが発生します。カスタムアラートダイアログからユーザーが入力した値を取得するにはどうすればよいですか?私はsetText
を試して、その方法が動作するかどうかをテストしました。ここで CustomAlertDialogのtexteditからテキストを取得する方法
View categoryDetailView = View.inflate(this, R.layout.customdialoghotspot, null);
final AlertDialog.Builder b = new AlertDialog.Builder(this);
b.setView(categoryDetailView);
b.setTitle("Add Current Location");
b.setPositiveButton("OK",null);
b.setNegativeButton("Cancel",null);
b.show();