Well, I'll say it like this.
I have a table with 2 columns. The first colum has names of items, the 2nd colums contains x amount of logos/indicators (ImageButtons). Several items can have the same logo/indicators.
My question is can I assign several ImageButtons to the same id? I've tried with using android:id="@+id/logo1"
on the first and then "android:id=@id/logo1"
on all the following occurences. This does not seem to work however. I can probably assign each button a different id and then just assign those to the same View, but it would be so much easier if I could just repeat the same ImageButton id for all the similar logos/indicators.