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.
カスタム レイアウト内でボタンが押された場合、AlertDialog コンテンツを更新することは可能ですか?
カスタム レイアウトの AlertDialog が表示されます。カスタム レイアウトには 6 つのボタンがあります。
カスタム レイアウト内で 6 つのボタンのいずれかが押されるたびに、タイトルを更新したいと考えています。
レイアウトは次のようになります。
タイトルライン
6 つのボタンを備えたカスタム レイアウト
3 つの AlertDialog ボタン
はい、AlertDialog への参照を保持し、Button の OnClickListener は次のようになります。
public void onClick(View v) { mDialog.setTitle("New Title"); }