[Solved] Wondering why my app crashes
Looking at your code it seems that you made a typo here: TextView DialogText=(TextView) findViewById(R.id.imageViewDialog); It should be TextView DialogText=(TextView) findViewById(R.id.textViewDialog); or whatever the name of the id for this TextView is. Apart from that, you need to learn to read the messages from the LogCat as they are often very informative. Cleary it says: … Read more