Questions tagged [expandable]

Expandable refers to a property of some UI elements which can be expanded by a user gesture such as hovering or clicking on them.

301 questions
1
vote
0 answers

ExpandableListView trouble while making menu bar(similar with facebook)

// class that defines events on clicking menu button class NaviClickListener implements OnClickListener { @Override public void onClick(View v) { MainFrame me = MainFrame.this; Context context = me; Animation anim; …
YongKim
  • 11
  • 1
1
vote
2 answers

android expandable menu (hiding/unhiding menu)

in my application layout, i have a setting button....when we push it, it will show some sub menus....when we push it again, it will hide all sub menus....look like expandable listview, but not exactly like that....just hiding/unhiding menu in order…
Arsyah
  • 79
  • 3
  • 11
1
vote
1 answer

Automatically expanding gap in-between navigation buttons - CSS

I am making top navigation with CSS. Some of the buttons are floated to the left, and some of them to the right. There is empty gap-button in-between. How to make that gap auto-expandable so the whole top navigation takes 100% of the page? Here is…
1
vote
1 answer

LayoutInflater Exception in Expandable List View

I am trying to make an expandable list but getting error. I just following all the things in the below Expandable list tutorial Visit:- http://android-adda.blogspot.in/2011/06/custom-expandable-listview.html#comment-form but i got a exception like…
1
vote
1 answer

How to display recursive xml tree (expandable) with php/jquery like browsers do?

I have the following complex xml source (example at : http://www.fluffyduck.com.au/sampleXML.xml) if it is viewed within a browser, the parent/child method of being displayed = perfect this is exactly what I am after. However I need to display it…
user1648968
  • 143
  • 2
  • 13
1
vote
1 answer

Expandable DIV Depending on Viewport

Im trying to make a div which width and height will shrink or expand proportionally depending on the viewport. As you can see on the example above this method will only make my div expand horizontally but not vertically(fixed height). If I try to…
Carlos R. Batista
  • 135
  • 1
  • 4
  • 11
1
vote
1 answer

I can't select childs items in expandable list

I make them selectable expandable list the children and take information. I also want to implement a number picker for each child. But the problem is that children do not select nor I can access the number picker buttons. I do not work any listener,…
1
vote
1 answer

Simple expandable table

I have a simple table that is set to expand hidden tr on clicking an arrow, problem is everything I click in the visible row makes the hidden tr appear. I only need this hidden tr to expand on clicking only the arrow. Here is my script: …
jamie
  • 37
  • 8
1
vote
2 answers

Transparent and expandable wrapper div, how?

I made an image to easier explain what Im after: Image Illustration http://bayimg.com/image/eabahaaci.jpg Ive read some other questions on the subject but Im not sure the solutions will work for me because my div needs to be expandable and grow as…
mdc
  • 1,161
  • 6
  • 22
  • 37
0
votes
2 answers

How to show and hide layout dynamically

I want to make layout that expands dynamically, like some kind of menu. It should look like this http://imageshack.us/photo/my-images/845/dialog.jpg/ Step 1: When I click on TextView it should inflate the new layout, remove transparent one, and move…
Veljko
  • 1,893
  • 6
  • 28
  • 58
0
votes
2 answers

Expandable TableView

How to show table view in categories and when clicked on one row it will expand with content? I've seen it in some apps and that's how I know it is possible but can't find any reference or tutorial regarding it. I would appreciate if someone could…
1337code
  • 93
  • 1
  • 2
  • 7
0
votes
1 answer

Nested standard expandable menu (accordian) behaviour

I am using the simple accordian script found here in the noaccordian mode to behave like a standard expandable menu example here but the nested menu under classes is not respecting the noaccordian class and is behaving as an accordian, how can I…
I-CRE8
  • 135
  • 1
  • 10
0
votes
1 answer

How to inflate a expandable list in Android?

i want to inflate a expandable list with some different text and different images on each row if i use albumCovers.get(i) instead of getResources().getDrawable(R.drawable.icon)then it throws an error, any one help us out? thanks ;p. public class…
Andy Lobel
  • 3,356
  • 9
  • 31
  • 40
0
votes
1 answer

How to use ImageViews with Expandable Lists in Android?

I have an expandable list in android and I can fill it with string easily but now I want to add a drawable on each row of the list (a different one on each row), what's the easiest way to do this with the code I already have? Thanks. public class…
Andy Lobel
  • 3,356
  • 9
  • 31
  • 40
0
votes
0 answers

can't have multiple columns expandable in GRID_DETAIL_PANEL_TOGGLE_COL_DEF DataGridPro

I am expanding on this demo: https://mui.com/x/react-data-grid/master-detail/ It allows to have one extendable column value, but not more than one, is it possible to add more than one expandable column when using…