Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

We can define ids like this:

<TextView android:id="@+id/btn1" />

But there are many activities and many components, the ids may be duplicated with others easily.

Is it able to define nested ides, like:

<TextView android:id="@+id/index/btn1" />
share|improve this question

1 Answer

up vote 3 down vote accepted

No you cannot. However, you can either 1) create the semblance of a namespace using _ for example:

<TextView android:id="@+id/index_btn1" />

or 2) you can reuse the same Id but in a different xml file. As long as there aren't duplicate ids inside of a view, findViewById() will work fine.

See the section on IDs in the docs for more info: http://developer.android.com/reference/android/view/View.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.