android get view by id code example
Example 1: findview by id in android
This is because findViewById() searches in the activity_main layout, while the button is located in the fragment's layout fragment_main.
Example 2: android studio get id name from view
//Don't get the ID name/string from the view ID.
//Instead use the
android:tag = "String"
//in your xml
//Then in Java use
View.getTag()
//To still get the ID name/string from view ID.
getResources().getResourceEntryName(View.getId())
Example 3: android get id of view
public void onClick(View v) {
switch (v.getId()) {
case R.id.add_04:
Toast.makeText(MainActivity.this, "1", Toast.LENGTH_LONG).show();
break;
case R.id.add_05:
Toast.makeText(MainActivity.this, "2", Toast.LENGTH_LONG).show();
break;
}
}