前提・実現したいこと
Android Studioにて主にFirebaseを用いてアプリ政策をしています。
通常ボタンをクリックした後に出てくるポップアップメッセージの内容を
Firebaseのデーターベースの機能を使って更新できるようにしたいです。
発生している問題・エラーメッセージ
public void hk_click(View view) { AlertDialog.Builder builder = new AlertDialog.Builder(this); builder.setTitle("北海道");
builder.setMessage("Today 100 / Infection");
AlertDialog dialog = builder.create();
dialog.show();
}
太字の部分のメッセージを更新したいです。
該当のソースコード
Java
1 2public class HomeActivity extends AppCompatActivity { 3 4 5 @Override 6 protected void onCreate(Bundle savedInstanceState) { 7 super.onCreate(savedInstanceState); 8 setContentView(R.layout.activity_home); 9 10 // - popup button - 11 @Override 12 public boolean onCreateOptionsMenu(Menu menu) { 13 // Inflate the menu; this adds items to the action bar if it is present. 14 getMenuInflater().inflate(R.menu.menu_main, menu); 15 return true; 16 } 17 18 public void hk_click(View view) { 19 AlertDialog.Builder builder = new AlertDialog.Builder(this); 20 builder.setTitle("北海道"); 21 builder.setMessage("Today 100 / Infection"); 22 AlertDialog dialog = builder.create(); 23 dialog.show(); 24 }
回答1件
あなたの回答
tips
プレビュー