Child Views That Are Translated, Scaled Or Rotated Disappear
I have a ViewGroup and I'm adding child Views to it like this: mViewGroup.addView(view, new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT)); (t
Solution 1:
Perhaps you should experiment with margins and paddings of your child views. Otherwise you could try to use a different ViewGroup layout like a FrameLayout where the postion of each view can be set by its margins.
Post a Comment for "Child Views That Are Translated, Scaled Or Rotated Disappear"