重複の可能性:
Android/Eclipse での検証
私はこの他の投稿を見てきましたが、一番の答えTextView
はマニフェストファイルで定義された s に対してのみ機能しますが、これは私の場合ではありません。オブジェクトを使用しDialogAlert
て文字列を要求していますが、これは英数字のみです。
[アップデート]
final EditText input = new EditText(MainActivityS.this);
setUserIdAlertDialog.setView(input);
setUserIdAlertDialog.setPositiveButton(getString(R.string.yesLabel), new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
String value = input.getText().toString();
Utils.sendStringIntent(getBaseContext(), getString(R.string.ACTION_ACTIVITY_NEW_ID), "ACTIVITY", value, getString(R.string.INTENT_EXTRA_NEW_USERNAME));
}
});
setUserIdAlertDialog.setNegativeButton(getString(R.string.noLabel), new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
}
});
setUserIdAlertDialog.show();