The root view in an Activity is determined by setContentView(int layoutId)
or setContentView(View rootView)
.
In your case, it is
setContentView(R.layout.activity_main);
Therefore, any call you make to findViewById
will lookup the id from activity_main.xml
.
If it is unable to find the id that you have specified, it will return null.
It is worth mentioning that that you aren't calling that method and this is typically how a Toast is made.
Toast.makeText(getApplicationContext(), "Hello toast!", Toast.LENGTH_SHORT).show();
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…