79592069

Date: 2025-04-25 08:04:29
Score: 2.5
Natty:
Report link

You are missing the crash log. Please post it. However, most likely cause of the crash is that you're calling findViewById on the Activity's view hierarchy, but the views (typeWriter_openai and btn_yes) are actually part of the Dialog's layout, not the Activity's.

You need to call findViewById on the dialog, not on this (the activity):

TypeWriterView typeWriterView = dialogAI.findViewById(R.id.typeWriter_openai);
AppCompatButton appCompatButton = dialogAI.findViewById(R.id.btn_yes);
Reasons:
  • RegEx Blacklisted phrase (2.5): Please post
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: zhvk