ViewGroup is a subclass of the Android View class(parent of all Android graphical widgets) which can contain child views.
3
votes
0answers
11 views
Dynamically hide a viewstub when a new one is created
I made a viewstub that is inflated and created again many times. The layout it uses includes a "delete" button that hides the viewstub (or deflates it).
In the onCreate method I have this:
ViewStub ...
3
votes
1answer
25 views
NullPointerException when using .addView to ViewGroup
I'm trying to use .addView to add another LinearLayout to the ViewGroup.
I am getting the following error:
05-21 16:23:04.096: E/AndroidRuntime(2086): FATAL EXCEPTION: main
05-21 16:23:04.096: ...
-1
votes
0answers
17 views
get Activity result inside custom layout class
I have my custom ViewGroup class. there are some buttons inside. i need to change background of buttons from gallery.
this is my code inside my onClick(View v) method.
Intent photoPickerIntent = new ...
0
votes
2answers
25 views
Android Annotations EViewGroup unable to recognize EActivity in Eclipse
I have a class set up as an EViewGroup. In it, I'm trying to reference another Activity set up as an EActivity. For some reason, the import isn't resolving, but it resolves fine if I reference the ...
0
votes
1answer
35 views
Set the child view at the TopLeft and BottomRight in a viewgroup
In my application I have the layout like this:
1) The main view can be moved and dragged.
2) Some controllers can be added to inside the main view. And their position can be set to TopLeft or ...
0
votes
0answers
39 views
android onDraw is not called in ViewGroup
I implemented a custom ViewGroup. I want to do some drawing stuff, too -> implemented onDraw()-methode and set setWillNotDraw() with false. But, onDraw() is not called (and I definitely called ...
1
vote
0answers
37 views
Android: inflated view do not show in customed ViewGroup
I made a customed view by extending ViewGroup, my problems is:
when adding a child( addView(chileView) ) view into ViewGroup, if the child view is a inflated view, the child view will not show. but ...
0
votes
0answers
20 views
block child views from handling onDrag
I have a ViewGroup with a custom button and some other child views. When the user long-touches the button, it starts a drag action. I want only the ViewGroup to receive the onDrag callbacks, not the ...
1
vote
4answers
79 views
ScrollView makes a custom layout invisible
I made a custom Viewgroup which i need to use in my application, but i need to put it in a ScrollView. When the layout is made only with my custom ViewGroup everything works fine, but when I put it in ...
0
votes
0answers
14 views
Pixelated results when scaling a custom ViewGroup
I'm looking into using custom ViewGroups and custom Views to draw a multi-layered stage.
Stage (ViewGroup) =>
Layer (ViewGroup) =>
Shape (View),
Shape (View)
(Like a ...
1
vote
0answers
44 views
Using ViewGroup within custom component
I've created a custom Card widget for use in my Android application, as shown here:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout ...
1
vote
4answers
233 views
ListView not visible in ViewPager in custom ViewGroup
I have a custom ViewGroup that has a ViewPager as a child. This is because I want to add a static header to the ViewPager and mess with onDraw() to make the header scroll vertically with the ViewPager ...
0
votes
1answer
67 views
How to remove View in Android?
I have two Buttons which is in main layout. If Add Button is clicked it has to add EditText dynamically(Using Inflater). This part is working. If Remove Button is clicked it has to remove those ...
0
votes
1answer
42 views
Android Viewflow go to view with a button
I am trying to make a nice horizontal viewgroup with the ViewFlow class.
I want to combine it with buttons. For example, when I click button 2 I go to view 2 of the viewgroup. Is that possible? I ...
0
votes
0answers
46 views
Save ViewGroup state : Android
Note: Here I am not talking about saving state of activity through onSaveInstanceState(...)
I am using https://github.com/eskim/android_drag_sample code to drag and drop views in my application. User ...
0
votes
1answer
36 views
Does addView() invoke onMeasure() for all childs?
does adding a child to a ViewGroup (via ViewGroup.addView() ) automatically invoke onMeasure() for all childs?
0
votes
0answers
13 views
Display and manage dynamic content
I want to display some custom views in a rigid container, what means that I can declare this container in a xml-layout and set its width/height in the xml-layout. At runtime I want to add a specific ...
0
votes
2answers
77 views
Android error : TextView cannot be cast to android.view.ViewGroup
I have looked at related questions but cant seem to find a solution.
Relevant links
android.widget.TextView cannot be cast to android.view.ViewGroup
Android: java.lang.ClassCastException: ...
0
votes
1answer
48 views
add exact amount of elements in a ViewGroup
This is I think the first time in my whole programmer's life that I ask something. Before I was always able to find the solution by myself or on internet. But here, I give up ...
About the tittle, of ...
1
vote
1answer
22 views
ViewGroup_instance.addView(View_instance), how a subclass can accept a super class instance?
What I think about this method:
ViewGroup, which is subclass of View, can not accept View_instance because of the inheritance hierarchy, so ViewGroup_instance is working as container for ...
0
votes
1answer
40 views
How to test a ViewGroup for it's type?
As I'm not really sure what this would be called, I could not find any answers using a search engine. I am using polymorphism to dynamicly change the properties of the root element of an activity.
...
2
votes
1answer
47 views
Do more views mean worse performance in a ViewGroup?
I have a ViewGroup gallery in my app, and every child view is as large as the parent. This means that the parent can only show one child view at a time. However, outside the screen there may be 10 or ...
1
vote
2answers
108 views
How to remove View from Activity RootView
I'm trying to remove an inflated view. This is how I inflate the view:
ViewGroup vg = (ViewGroup)findViewById(android.R.id.content).getRootView();
mOverflowMenuView = View.inflate(this, ...
1
vote
0answers
45 views
add custom layout into DraggableGridView
I use DraggableGridView to create a ViewGroup, and I want to add my custom view into it.
Below is my custom layout:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
...
0
votes
2answers
79 views
Inflate a linear layout from R.id and not R.layout
I'm going nuts here. I have a layout for a fragment. Inside I have among other things a LinearLayout with an id, say for example myLinearLayout. Basically, I want to do the following:
LinearLayout ...
0
votes
2answers
42 views
Is it can add viewgroup in addHeaderView method of listview?
I use the below code to add viewgroup in addHeaderView method of listview:
MyViewGroup myvg = new MyViewGroup(this);
listView.addHeaderView(myvg, null, false);
But headerView can not display in ...
0
votes
1answer
40 views
Binding a class to a view/viewgroup in Android?
In Android I have a class contains 2 properties. I've created many objects from it and put them into an ArrayList, then using ArrayAdapter to bind the List to a TableView as you see. Once the list is ...
0
votes
1answer
60 views
Detecting which View was tapped, after animating its position
I have a ScrollView which contains a RelativeLayout. The RelativeLayout contains some other viewgroups which are initially all positioned in the same place (On top of one another). A swipe down ...
1
vote
1answer
33 views
How to position view based on position of one of sibling ViewGroup's child?
Ok, the question may sound confusing. Let me explain the scenario:
Refer the image at following link, (-I wasn't able to use imgur as it is blocked in my network):
...
0
votes
1answer
87 views
Android: ViewGroup Overlapping When Adding Children within Activity
My situation is as follows:
In my layout xml, I have a general LinearLayout serving as a master container and I want to populate the contents based on a paging system all contained within the single ...
2
votes
1answer
55 views
Android renabling listitem in listview after disabling it
I have a BaseActivity which extends Activity and all the other activities extends this BaseActivity.
What I do is in a state of my application, I want to disable all the items on the screen from the ...
0
votes
0answers
66 views
i m not getting the view group object to be send during inflate layout in fragment Activity
I m using view pager extending Fragment Activity and i have 3 layouts which contain form which is being filled in
public View onCreateView(LayoutInflater inflater, ViewGroup container,
...
0
votes
1answer
145 views
irregular / custom shaped ImageButton for Android
I'd like to create irregularly shaped image buttons for Android, based on the transparent areas of the button image.
Basically, if you click on the transparent area of a button, instead of handling ...
0
votes
1answer
165 views
How to add subView to ViewGroup using RelativeLayout.LayoutParams
I wrote a class that extends ViewGroup and override the method as follow:
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, ...
0
votes
3answers
374 views
Fullscreen in WindowManager
This is my code:
params = new WindowManager.LayoutParams(
WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN,
...
-1
votes
1answer
106 views
Android - Removing and adding views won't work after change of screen orientation?
i have experienced some strange behavior of my dynamically added views after screen orientation change. I really would appreciate some help here...
I have a base layout for my activity, which is a ...
0
votes
0answers
49 views
About screen switch in android
I create a page slide transitions with ViewGroup. It has the effect. I switch to the back page and click on the button. It has no use and no response.
Every page correspond one Activity. It just ...
0
votes
0answers
53 views
On Async ,clicking continously app is getting crash
I am making an application in android. I have a tabview. In tabview I have to show business logo(images) Everything is working correctly but problem is when async task class runs it takes so much time ...
8
votes
1answer
431 views
Secret Android build process
The Android (Open Source Project) native launcher source code seems to be missing the following required XML layout parameters in some of its published resource files: layout_height and layout_width
...
5
votes
5answers
275 views
Creating a copy of a View?
I have 2 Activities: A,B.Layout of Activity A,has a viewgroup that user changes it's content.In Activity B,I have to show that viewgroup again,without any change,it must be a real copy of that ...
6
votes
2answers
409 views
how to add a pin marker on image view in android
i am working on a project where i need to add pins on image view as shown in below image.
how could we do this.
i successfully created a zoomable image view using
TouchImageview.java
class ...
0
votes
2answers
317 views
Should a custom View inside a custom ViewGroup use onDraw() or layout()?
At first, I created a custom view that drew itself by overriding the onDraw() method. This turned out to be impractical because of the large amount of views I needed to create. So I've created a ...
0
votes
2answers
251 views
Android - LinearLayout not adding custom view
NOTICE: THIS QUESTION HAS BEEN RESOLVED DUE TO ME CATCHING MY OWN STUPIDITY
I want to add a custom class to a LinearLayout, but for some reason I keep getting a NullPointerException.
Here is the ...
0
votes
2answers
250 views
Dynamically add layout on button click and get text from the layout?
So I have a layout that gets added to the main layout every time the user presses a button. I got that working fine, but that layout happens to consist of several EditTexts. What would be the best ...
2
votes
1answer
143 views
Selector is applying change to all views instead of clicked view
I'm working on adding an onClick highlight to a view in a drag and drop grid in Android. The project is on GitHub (the dev branch contains the code that is using the selector).
The problem I am ...
0
votes
0answers
73 views
Add View (assign to a parent ViewGroup) to the same ViewGroup
I am using the Viewpager, and a custom implementation to allow endless looping. I am trying to make it work with 1 view. For that I need to add the view to the ViewGroup 2 times like: A <-> A ...
0
votes
2answers
486 views
Android: Adding View inflated from XML Layout to Viewgroup which has not defined any width yet
I have a layout problem with my custom viewgroup class.
I call init() in the constructor. In my init() function I inflate the viewgroups layout from an xml file, which contains a LinearLayout to ...
1
vote
2answers
177 views
android ViewGroup height can't be wrap_content
lots of button will be added in my viewgroup, so I need my viewgroup'height is wrap_content, but whatever I set height in code or xml, it doesn't work, the viewgroup'height always match_parent, so ...
0
votes
1answer
760 views
move Android fragment to a different container Can't change container ID of fragment
Here is what I would like my application to do on a tablet.
Fragment (0) has some menu that would display fragments (1)...(n) like this:
-----------------
| | | | |
| | | | |
|(0)| X ...
0
votes
1answer
133 views
Drag and drop between views
I have a viewgroup with textviews that are added dynamically into the viewgroup. How would I add the ability to drag and drop a textview between other textviews.
Is there a way to detect what view ...






