[Solved] Android AlertDialog wont came out for instance [closed]
Your class TestActivity must extend AppCompatActivity class so that the onCreate method could be overriden. Your class isn’t using Inheritance or Interface Implementation, that’s why @Override annotation is throwing error. public class TestActivity extends AppCompatActivity Second, your code for showing Toast is wrong. This is how you can fix that. Toast.makeText(this, id+”/”+pass, Toast.LENGTH_SHORT).show(); Third, remove … Read more