I just took a junior android developer job test and that was one of the questions, it was a fill in the blank type of questions and it had the attribute name missing but it took another TextView id as its parameter so it was like android:_______="@ id/logIn"
or something like that, I would love to know what it is incase I get it as a question in the future
thanks in advance
CodePudding user response:
If I understand your question, you want to know all XML attributes that use ID, right?
android:layout_toRightOf="@ id/logIn"
android:layout_toLeftOf="@ id/logIn"
android:labelFor="@ id/logIn"
android:layout_toStartOf="@ id/logIn"
android:layout_toEndOf="@ id/logIn"
android:layout_alignEnd="@ id/logIn"
android:layout_alignStart="@ id/logIn"
