In my xml layouts I have a custom view in which i will put some children like:

<com.proj.layouts.components.ScrollLayout
    android:id="@+id/slBody"
    android:layout_width="700dp"
    android:layout_height="400dp">
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="child1"/>
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="child2"/>
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="child3"/>
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="child4"/>
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="child5"/>
</com.proj.layouts.components.ScrollLayout>

Let me explain a bit more. I wrote a custom ScrollView in which I already have a container defined, for the children. So I just want to put them there.

public class ScrollLayout extends LinearLayout {
    // View responsible for the scrolling
    private FrameLayout svContainer;
    // View holding all of the children
    private LinearLayout llContainer;

    public ScrollLayout(Context context) {
        super(context);
        init();
    }

    public ScrollLayout(Context context, AttributeSet attrs) {
        super(context, attrs);
        init();
    }

    private void init() {
        super.removeAllViews(); // kill old containers


        svContainer = new HorizontalScroll(getContext());
        llContainer = new LinearLayout(getContext());
        llContainer.setOrientation(orientation);
        svContainer.addView(llContainer);

        svContainer.setLayoutParams(new FrameLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));
        llContainer.setLayoutParams(new FrameLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));

        addView(svContainer);


    }

    ... I left out the part which takes care of the scroll event ...
}

What is the way to add Child* to llContainer?

link|improve this question

80% accept rate
can you add some more description like CustomView.xml file and its properties – Raj Feb 13 at 10:24
i do not have an xml for the CustomView the custom view is a class in which all is done programmatically – sebataz Feb 13 at 10:26
You need to add how you add the Views to your Layout – triggs Feb 13 at 10:37
i hope the question is a bit more clear... – sebataz Feb 13 at 10:44
svContainer = new HorizontalScroll(getContext()); is HorizontalScroll a custom view aswell? is please post it aswell – triggs Feb 13 at 11:18
feedback

1 Answer

up vote 2 down vote accepted

Why don't you want just add all children to LinearLayout from your ScrollLayout? This should be done in onFinishInflate() method.

for (int i = 0; i<getChildCount(); i++)
{
    View v = getChildAt(i);
    removeViewAt(i);
    llContainer.addView(v);
}

When you write your structure in xml file - all inner views are children of your custom layout. Just replace it to LinearLayout.

link|improve this answer
i tried as you say, but the child count is always 0 – sebataz Feb 13 at 13:00
cause you call super.removeAllViews(); - remove this string – Jin35 Feb 13 at 13:02
the same without that line... could it be because I placed your code inside the init()? – sebataz Feb 13 at 13:06
1  
try to do it in method onFinishInflate() – Jin35 Feb 13 at 13:34
1  
I suppose that when android starts inflating views it goes from parents to children - and when you are in constructor of custom view - children does not exist yet. – Jin35 Feb 13 at 13:36
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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