Since you are inside the Activity
, the context
can be the Activity
itself, so replace:
Toast.makeText(getApplicationContext(), "hi", Toast.LENGTH_LONG).show();
With:
Toast.makeText(this, "hi", Toast.LENGTH_LONG).show();
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…