Is index important in addView()?
android, view
Solution
The point of the index attribute is to allow you change the order of views.
Let's say you have a massive list of views, and want to suddenly put one at the very top. If you specify that view's index as 0, it will be the first to display in the layout.
The Android documentation talks briefly about this.
A previous SO question shows the practical use for this: Android: How to add view at start of layout?.
Unless you really need to specify a position for the view, just use `addView(view)`.
Problem
I can't understand the function of `index` in `addView(View child, int index)` of a `ViewGroup`. What's the `index` for? Can be `index` negative value? Does it affect to the `layout` or the way to display the `view`? I have tested the code with and without `index` and I can't see the difference.