A scrollable control affords the user the ability to slide text, images or video across a monitor or display, usually to conserve screen real estate.
Questions tagged [scrollable]
577 questions
906
votes
32 answers
Making TextView scrollable on Android
I am displaying text in a TextView that appears to be too long to fit
into one screen. I need to make my TextView scrollable. How can I do
that?
Here is the code:
final TextView tv = new…

Muhammad Maqsoodur Rehman
- 33,681
- 34
- 84
- 124
167
votes
6 answers
Scrollable Menu with Bootstrap - Menu expanding its container when it should not
I tried this method (their fiddle) to enable scrollable menu with Bootstrap, but with that approach, the scrollable menu expands its container -- fiddle -- the non-scrollable menu, correctly, does not do this.
How can I fix this? Suggestions on…

eliashdezr
- 2,085
- 3
- 17
- 11
59
votes
8 answers
Horizontal scrollable div's in a bootstrap row
I'm trying the make a horizontal scrollable bootstrap row. The row contains customer reviews wrapped in div's. The width of each testimonial div is 33.333%.
white-space: nowrap and display: inline-block doesn't work.
What am I doing wrong?

Codehan25
- 2,704
- 10
- 47
- 94
57
votes
4 answers
Set div to remaining height using CSS with unknown height divs above and below
Is it possible to make the wrapper fill the window height (no scrolling) and the center div scrollable without messing around with pixels and javascript?
Header
high…

danial
- 4,058
- 2
- 32
- 39
56
votes
5 answers
Scrollable box containing list of Checkboxes in HTML
Attached you'll see a picture of a mock up I did for the required UI. As you can see I need some type of scrollable box that contains checkboxes.
I've thought of a scrollable div, although I can't find a way to set a border around a div? Second I…
user818700
49
votes
6 answers
How to make Scrollable text in flutter?
I have an image at the top of a Column widget after that there is heading which is Text widget and after that, there is one more Text widget which contains some description and that exceeds the screen and gives an error of rendering.
So I want to…

Vaibhav Miniyar
- 743
- 1
- 7
- 17
39
votes
6 answers
Making ListView scrollable in vertical direction
I am using a System.Windows.Forms.ListView with checkboxes = true.
I can see that when the list items are more than what can fit, I get a horizontal scroll bar. I tried to find any properties to change scroll bar orientation.
Is there any way to…

Ravisha
- 3,261
- 9
- 39
- 66
21
votes
9 answers
Use RecyclerView inside ScrollView with flexible Recycler item height
I want to know if there is any possible way to use RecyclerView?
Before this, I used RecyclerView with fixed height inside a ScrollView but this time I don't know the height of the item.
Hint: I read all question and solution on stack question…

Ashkan
- 1,357
- 4
- 16
- 37
20
votes
2 answers
Get mouse position in scrollable div
Yet another question that has been pecking away at me the last few days. As you may have seen from my other questions I am creating some mind map software. So (extremely simplified) I have a two divs. One that is a square on the page, and another…

Adam Holmes
- 1,783
- 3
- 20
- 32
20
votes
9 answers
android making layout scrollable when soft keyboard open, but not shifting it upwards
This is my screen, with one button hidden behind the keyboard.
I want exactly like this, but scrollable. -
Whenever, the keyboard gets opened, I want to make look it the same as in image. But, instead to make it scrollable, so that the user can…

Narendra Singh
- 3,990
- 5
- 37
- 78
19
votes
4 answers
How to make scrollable tab in Android?
I have 9 tab but in fill mode. I want to make these thabs scrollable. But i dont know the trick. I tried many methods but still nothing.
My Activity :
package com.bani.fragment2;
import android.os.Bundle;
import…

Burhanuddin Rabbani
- 349
- 2
- 3
- 10
17
votes
3 answers
Get the first and last visible element in a scrollable div
I have list of thumbs in a scrollable div, animated with next/prev button. Each click on "next "button should match the attribute of the first visible element. Each click on "prev" button should give me the attribute of the last visible element.
I…

Thomas
- 1,444
- 1
- 13
- 25
17
votes
3 answers
How to limit draggable scrollable sheet to take height according to its child height in flutter?
I am using draggableScrollableSheet. I am giving these parameters
DraggableScrollableSheet(initialChildSize: 0.4,maxChildSize: 1,minChildSize: 0.4,builder: (BuildContext context, ScrollController scrollController) {
return…

Umair
- 1,759
- 6
- 23
- 44
16
votes
1 answer
Make text scrollable within div
I am looking to make some lengthy text contained into a div where the text can be viewed by scrolling up or down.
Right now the "description" text is rendered like so <%= @pin.description.html_safe %> and is inside a

Cyzanfar
- 6,997
- 9
- 43
- 81
13
votes
4 answers
How to stop a UserControl (nee ScrollableControl) from calling ScrollWindow?
The .NET UserControl (which descends from ScrollableControl) has to ability to display horizontal and vertical scrollbars.
The caller can set the visibility, and range, of these horizontal and vertical scrollbars:
UserControl.AutoScroll =…

Ian Boyd
- 246,734
- 253
- 869
- 1,219