Expandable refers to a property of some UI elements which can be expanded by a user gesture such as hovering or clicking on them.
Questions tagged [expandable]
301 questions
2
votes
0 answers
ConvertView arg in getChildView() and getGroupView() are mixed in ExpandableAdapter?
when getChildView() called, the convertView delivered sometimes is the view i created in getGroupView(), and also when getGroupView() called, the convertView sometimes is the view i created in getChildView, why would this happened?
public…

kwf2030
- 195
- 2
- 13
2
votes
5 answers
Expandable enum Java
I'm making a program that has an enum that us used for a list of types but I want it to have the possibility of being expanded later at runtime and am not sure what is the best way to do this is. The only ways I have been able to think of are using…

user2248702
- 2,741
- 7
- 41
- 69
2
votes
2 answers
How to determine if MemoryStream is fixed size?
My method gets MemoryStream as parameter. How can I know whether this MemoryStream is expandable?
MemoryStream can be created using an array using "new MemoryStream(byte[] buf)". This means that stream will have fixed size. You can't append data to…

Evil Beaver
- 379
- 3
- 12
2
votes
1 answer
java.lang.NullPointerException : displaying records from database in an expandable listview
As the question dictates, i need to display records from database, different record for each child.ie,
child 1= record 1 data. child 2 =record 2 data.so and so.
i came up with the following code for display:
package com.example.moolah;
import…

user2468835
- 79
- 1
- 7
2
votes
3 answers
Expandable Form Fields with JS
I may just be searching Google using the wrong keywords but I am having very little luck finding information on creating expandable form fields. I have an input form where a user can list all of the inventory assigned to a server node, but would…
user470760
2
votes
1 answer
Matlab : expandable array, lost data
I have two columns of data. First column is time and second column is a function of time. However some time values are lost, so the function values. I don't know the index of the lost row (the amount of data is too large). For example, I have this:
…

newzad
- 706
- 1
- 14
- 29
2
votes
2 answers
how to get id of child and parent in Expandable listview?
For Expandable listview. I have written the following code:
public class MainActivity extends Activity {
ExpandableListView explvlist;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
…

user2261110
- 51
- 1
- 7
2
votes
2 answers
Expandable listview item height with another listview inside
I have an ExpandableListView, where every group has one child. Every child is another ListView with different number of rows. There is a problem with ExpandableListView item height in expanded condition, it's not wraping to child ListView content. I…

Caxa
- 19
- 1
- 3
2
votes
1 answer
(Android need help) Checkbox automaticly checked like crazy in expandable listview
I created a expandable listview, childview has checkbox, when expand parent view, check on one checkbox, not only that checkbox be checked also there are another checkboxs be checked.
I dont know why and how to fix this problem.
I upload sourcecode…

9android.net
- 29
- 2
2
votes
0 answers
Horizontal bar graph in collapsible table style in iOS
I have requirement to develop Horizontal Bar graph in collapsible table style. I am using core plot framework currently. Does it support such animation? Do I need to use some other API.
I need the graph to be exactly like Collapsible/Expandable…

Kiran
- 31
- 4
2
votes
1 answer
AS3 Flash Expandable Banner Go to Next Scene After expanding
I'll keep this short; basically after my flash banner expands to its normal size I want it to then go to the next scene, but for the life of me I cant figure out how to do this, nothing seems to be working. I'm not that experienced with flash so I…

user1730651
- 21
- 3
2
votes
2 answers
Sliding expandable inline menu
I had a concept for a simple (in appearance) menu which expands and retracts submenus using only CSS.
This is what have conceptualized:
2
votes
1 answer
How to add different layouts for children in expandable list view in android?
I'm trying to implement expendable list view with two different layouts for children in different groups. After quite a bit of searching I came up with the following code for my adapter. When I run application and try to expand last group (of 4…

ealihodzic
- 199
- 1
- 6
1
vote
0 answers
How to web scrape collapsible/expandable sections of table using beautiful soup
I'm working on collecting data from an income statement data table in Yahoo Finance. There are collapsible/expandable sections within this table, which the web scraper can't seem to access. How do I retrieve data from the collapsed sections? Here's…

Mulak
- 11
- 1
1
vote
1 answer
Flutter: CarouselSlider/ExpandablePageView scrollable items with width larger than then phone screen width?
I want to use a widget like Carousel Slider or Expandable Page View (or any PageView builder working implementation) that has items/pages with width larger than the screen width. I want to be able to scroll left and right freely and switch page only…

GianlucaA
- 35
- 4