Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to use viewGroup in android

share|improve this question
Here is a documentation from Google – Vinay Sep 2 '09 at 15:07
about-android.blogspot.com/2010/05/… This example is OK. Be sure to set unique id-s for such views when using them in ListView, or they can be redrawn on scrolling – shaman.sir Sep 13 '10 at 10:30
1  
ViewGroup is any group of views literally, - ListView, Linear/Horizontal/VerticalLayout ..., all these kinds. What example do you want? Adding or removing views? – shaman.sir Oct 12 '10 at 18:23
Thanks for the link! Very helpful! – worked Aug 27 '11 at 14:23
2  
How do you want to use it? – Simon André Forsberg Apr 18 '12 at 17:55

closed as not constructive by casperOne Jul 24 '12 at 15:12

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

As mentioned, ViewGroup is an abstract class that all ViewGroups extend, LinearLayout for instance is a ViewGroup.

MyViewGroup.java:

public class MyViewGroup extends LinearLayout {

    public MyViewGroup(Context context) {
        super(context);
    }

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

    public MyViewGroup(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    @Override
    protected void onLayout(boolean changed, int l, int t, int r, int b) {
        super.onLayout(changed, l, t, r, b);
        Log.e("SWIPED", "onLayout : " + Boolean.toString(changed));
    }

    @Override
    public boolean onInterceptTouchEvent(MotionEvent event) {
        super.onInterceptTouchEvent(event);
        Log.e("SWIPED", "onInterceptTouchEvent : " + event.getAction());
        return false;
    }
}

Main.XML:

<com.example.MyViewGroup xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/screen" android:orientation="vertical"
    android:layout_width="fill_parent" android:layout_height="fill_parent">

<TextView android:id="@+id/tv1" android:layout_width="fill_parent"
    android:layout_height="wrap_content" android:text="TEXT ONE"
    android:padding="20dip" android:background="@android:color/background_dark" />

<TextView android:padding="20dip" android:background="@android:color/background_light"
    android:id="@+id/tv2" android:layout_height="wrap_content"
    android:text="TEXT TWO" android:layout_width="fill_parent" />

</com.example.MyViewGroup>

MainActivity.java:

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }
}
share|improve this answer
The MyViewGroup class here does nothing , prints nothing. – user606669 Feb 21 at 14:02
I do not think this answer can give any help to anyone else. Since the it extends the LinearLayout, and all those jobs should be overridden is thrown to LinearLayout. It make no senses. – hguser May 6 at 0:30