Is parent view and container view the same thing? - android

I'm confused about the definition. In Android, is a view's parent and container the same thing? For instance, when a recyclerview layout contains a itemview, is the recyclerview both the itemview's parent view and container view?

view's parent and container the same thing?
Yes. Since only containers can contain other views (incl. other containers too), then only said container can be parent to views it contains.
recyclerview layout contains a itemview, is the recyclerview both the itemview's parent view and container view
recyclerview is not the best example, but for simplicity 'yes'. This may give you some overview too:
containerA
view1
containerB
view2
view3
where containerA/B are ViewGroups (i.e. LinearLayouts) and view1/2/3 are i.e. widgets (say Buttons).

Related

Fragment Transactions with scrollview

You have an Activity A --> display a fragment B (scrollView), on next button you have fragment C replaced with relative Layout. But the view is not replaced.
ScrollView Defines as follows :
"A view group that allows the view hierarchy placed within it to be scrolled. Scroll view may have only one direct child placed within it. To add multiple views within the scroll view, make the direct child you add a view group, for example LinearLayout, and place additional views within that LinearLayout."
-ScrollView is not a base view hence wrapping the scrolling in base views like (Linear Layout,RelativeLayout Can solve your problem

How to remove a parent view - android

In Android:
Given a View from an onTouchEvent, how can I remove the View and its parent?
I have a LinearLayout in which I have a View. Clicking on the View creates a sub-layout inside of the LinearLayout. That sub-layout needs its own onTouchListeners so I cannot attach an onTouchListener to the parent LinearLayout because that will always block onTouchListeners to my sub-layout.
Therefore, I need a means to remove the parent layout given its child layout. I can already remove child layouts from their parents.
If you know how to remove child views from a parent, stick with what you know ;)
The idea is to elevate to a position in the view tree where you can remove your parent view as a child. How do you do that? Easy, get the grandparent view of your view and remove your parent view from the grandparent.
((ViewGroup)view.getParent().getParent()).removeView((ViewGroup)view.getParent());

Difference between View and ViewGroup in Android

What is the difference between a View and a ViewGroup in Android programming?
View
View objects are the basic building blocks of User Interface(UI) elements in Android.
View is a simple rectangle box which responds to the user's actions.
Examples are EditText, Button, CheckBox etc..
View refers to the android.view.View class, which is the base class of all UI classes.
ViewGroup
ViewGroup is the invisible container. It holds View and ViewGroup
For example, LinearLayout is the ViewGroup that contains Button(View), and other Layouts also.
ViewGroup is the base class for Layouts.
Below image is the answer. Don't take it too complex.
A ViewGroup is a special view that can contain other views (called children.) The view group is the base class for layouts and views containers. This class also defines the ViewGroup.LayoutParams class which serves as the base class for layouts parameters.
View class represents the basic building block for user interface components. A View occupies a rectangular area on the screen and is
responsible for drawing and event handling. View is the base class
for widgets, which are used to create interactive UI components
(buttons, text fields, etc.).
Example : ViewGroup (LinearLayout), View (TextView)
Reference
View is a basic building block of UI (User Interface) in android. A view is a small rectangular box which responds to user inputs. Eg: EditText, Button, CheckBox, etc..
ViewGroup is a invisible container of other views (child views) and other viewgroups. Eg: LinearLayout is a viewgroup which can contain other views in it.
ViewGroup is a special kind of view which is extended from View as its base class. ViewGroup is the base class for layouts.
as name states View is singular and the group of Views is the ViewGroup.
more info:
http://www.herongyang.com/Android/View-ViewGroup-Layout-and-Widget.html
ViewGroup is itself a View that works as a container for other views. It extends the functionality of View class in order to provide efficient ways to layout the child views.
For example, LinearLayout is a ViewGroup that lets you define the orientation in which you want child views to be laid, that's all you need to do and LinearLayout will take care of the rest.
Viewgroup inherits properties of views and does more with other views and viewgroup.
See the Android API: http://developer.android.com/reference/android/view/ViewGroup.html
in ViewGroup you can add some other Views as child. ViewGroup is the base class for layouts and view containers.
View is the SuperClass of All component like TextView, EditText, ListView, etc..
while ViewGroup is Collection of Views(TextView, EditText, ListView, etc..), somewhat like container.
A View object is a component of the user interface (UI) like a button or a text box, and it's also called widget.
A ViewGroup object is a layout, that is, a container of other ViewGroup objects (layouts) and View objects (widgets). It's possible to have a layout inside another layout. It's called nested layout but it can increase the time needed to draw the user interface.
The user interface for an app is built using a hierarchy of ViewGroup and View objects. In Android Studio it is possible to use the Component Tree window to visualise this hierarchy.
The Layout Editor in Android Studio can be used to drag and drop View objects (widgets) in the layout. It simplifies the creation of a layout.
In simple words View is the UI element which we interact with when we use an app,like button,edit text and image etc.View is the child class of Android.view.View
While View group is the container which contains all these views inside it in addition to several othe viewgroups like linear or Frame Layout etc. Example if we design & take the root element as Linear layout now our main layout is linear layout inside it we can take another view group (i.e another Linear layout) & many other views like buttons or textview etc.
A ViewGroup describes the layout of the Views in its group. The two basic examples of ViewGroups are LinearLayout and RelativeLayout. Breaking LinearLayout even further, you can have either Vertical LinearLayout or Horizontal LinearLayout. If you choose Vertical LinearLayout, your Views will stack vertically on your screen. The two most basic examples of Views are TextView and Button. Thus, if you have a ViewGroup of Vertical LinearLayout, your Views (e.g. TextViews and Buttons) would line up vertically down your screen.
When the other posters show nested ViewGroups, what they mean is, for example, one of the rows in my Vertical LinearLayout might actually, at the lower level, be several items arranged horizontally. In that case, I'd have a Horizontal LinearLayout as one of the children of my top level Vertical LinearLayout.
Example of Nested ViewGroups:
Parent ViewGroup = Vertical LinearLayout
Row1: TextView1
Row2: Button1
Row3: Image TextView2 Button2 <-- Horizontal Linear nested in Vertical Linear
Row4: TextView3
Row5: Button3

Android detect position of ViewGroup Child

So I really have two related questions on ViewGroups:
Is a LinearLayout and instance of ViewGroup? Meaning, can I call getChildAt(index) when using a LinearLayout?
Can I detect when a ViewGroup child is at the "top" of the screen (right below the action bar) after scrolling? For example, when the 3rd child is scrolled to the top
I'm working on an app that utilizes Parallax Scrolling and I'm using an open source library that has a custom View with a LinearLayout as a child and 4 TextViews as the LinearLayouts children. In their custom View class they are calling getChildAt but I can't seem to find documentation on that related to LinearLayouts so I wanted to check. And essentially I want to check if one of these TextViews are at the top of the screen. Any clairfication would be much appreciated
question 1 { Is a LinearLayout and instance of ViewGroup? Meaning, can I call getChildAt(index) when using a LinearLayout? }
answer = yes... A ViewGroup is a special view that can contain other views (called children.) The view group is the base class for layouts and views containers .. so your linear layout is a view because it extends view, and if it contains other sub views called children then it's a viewgroup.. viewgroup extends view.. Meaning YES you can call getChildAt(index) when using linear layout..
question 2 { Can I detect when a ViewGroup child is at the "top" of the screen (right below the action bar)? }.
answer YES , you can check the Z order of the children in a viewgroup(a view containing other sub views) to know its position, so probably your first child is the child below the actionbar, that's if your viewgroup (that is the linear layout) is the view content of your activity - which is always the case right? - yea..
if you want a documentation on getChildAt and viewgroups in general then look here ..
hope it helps.. let me know anything that's arising..

Android adding complex layout in ViewFlipper

I have complex view with more linearlayout-s and relativelayout in one child in ViewFlipper.
I want to group this complex view in one child of ViewFlipper.
ViewFlipper separates my layout in more child
How can I add view with complex layout in one child ??
Thanks
You have to have a sigle parent layout for each "page" in the view flipper. So you need to wrap your complex view in some other container layout.

Categories

Resources