Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is index important in addView()?

Tags:

android

view

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.

like image 999
Fran Avatar asked Feb 05 '14 13:02

Fran


1 Answers

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).

like image 154
Joseph Boyle Avatar answered Nov 11 '22 22:11

Joseph Boyle