If I have the exact same ImageView in two different activities, should each Image View have a unique ID in their respective XML files?
For example, I have a puzzle App. In activityOne, there are 4 ImageViews that show 4 blank animated boxes. When the user guesses the correct letter, the appropriate box is replaced with that letter. When they solve the puzzle, they are taken to PuzzleTwo in activityTwo. Let's say puzzleTwo is also 4 letters long. So I create 4 more ImageViews for this new puzzle. Should these ImageViews have IDs that are different from the previous puzzle? Thank you.