According to this thread I need to use @+id/ for the first time to make resource be created.
But what if I forget that this resource was previously created and create it again with @+id/? I have some input and set nextFocusDown for the element that is still not declared.
<EditText
...
android:nextFocusDown="@+id/myinput2"/>
200 lines below I create this element with @+id because I forgot that it's already declared.
<EditText
...
android:id="@+id/myinput2"/>
It works like this but can it cause an issue?
