So I have a Linear Layout already populated with children. Is there a way to change the position at which one of the children is located?
I\'m trying to swap to vie
You can use ViewGroup.removeView(View) and ViewGroup.addView(View child, int index, ViewGroup.LayoutParams params) for this.
ViewGroup.removeView(View)