In Android the name we give to views is not as important as in Windows.
You can have several labels with:
- different names and different EventNames, in that case they are all different and independant and have different event routines.
- different names and the same EventName, in this case you must differentiate the labels with the Tag property, the names are no more known and there is 'only' one event routine for all the labels (with the same Eventname).
- same name and same EventName, same as above.
I your labels are in different Activities you can have same names and same EventNames because Activities are independant of each other in different modules.
Best regards.