Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
DialogPreferenceそのイベントのいずれかでのポジティブボタンを取得する方法はありますか?
DialogPreference
最初は無効にし、検証したら有効にEditTextします。
EditText
単に電話する
(AlertDialog)dialog.getButton(AlertDialog.BUTTON_POSITIVE).setEnabled(false);
builder.create()ただし、Dialog Builderを使用している場合は、その前後に必ずこれを呼び出してください。.show()
builder.create()
.show()
その後、ダイアログへの参照を保持し、条件が満たされたときにボタンを有効にすることができます。