1,769 questions
1 vote
1 answer
125 views
ScrollView contents below navigation bar
I'm struggling with the new edge-to-edge display introduced by default with SDK 36. My scroll view contents are behind the navigation bar even when scrolled to the bottom. I had a look at the "...
0 votes
2 answers
64 views
Buttons inside horizontal ScrollView doesn't response
I write project in react-native and have weird issue. in my home page i have horizontal ScrollView, and inside it components that contain buttons, but the buttons not work. e.g. pressing on the ...
1 vote
1 answer
269 views
How to implement a scrolling behavior in Jetpack Compose similar to YouTube's channel UI?
I'm working on an Android app using Jetpack Compose, and I'm trying to implement a scrolling interface similar to the YouTube app's channel UI. Here's what I want to achieve: The top of the screen ...
0 votes
1 answer
71 views
Why is my layout not scrolling despite implementing Scrollview in android?
I have a layout file of a fragment in which i am trying to implement scrollview in it. I have made Scrollview as a parent view but still it doesn't scoll up and down. Below is the code of my layout ...
0 votes
1 answer
51 views
Cardviews not scrollable inside scrollview
In the beginning, I searched for a solution to the problem extensively but couldn't resolve it, even after trying all the solutions and answers to similar questions here. I have a scrollview which ...
0 votes
1 answer
70 views
Android - ScrollView not scrolling, beginner programmer question
I'm beginner student of Android programming I've added LinearLayout and ScrollView. I've filled LinearLayout with many long TextViews, to ensure, that it is long enough, to be able to scroll. My issue ...
1 vote
1 answer
74 views
Pdf generated from scrollview using PdfDocument only prints contents of first page keeping other pages blank
I want to generate a pdf document using Android's PdfDocument class by scrolling through contents of a scrollView. Right now, correct number of pages are being generated but contents are printed only ...
0 votes
1 answer
96 views
Is there a way to remove the space between the top of the screen and top of the image in ScrollView?
I wanted to display my super-tall image, so I tried to put it into ScrollView,and constraint it to the top of the screen so it would be possible to scroll through it. I imagined it would fill in the ...
0 votes
1 answer
59 views
HorizontalScrollView doesn't scroll
I want to make a Table with a solid column on the left and scrollable columns on the right that scoll horizontally. I've devided it into two differnt Table Layouts and put the right one in a ...
3 votes
3 answers
137 views
How to check if the ScrollView is actually displayed or not?
I have this dynamic text which will change. I need to enable the button of this layout only if the user read all the texts. (scrolled to the bottom). This is working with the method that I have ...
2 votes
1 answer
573 views
Expo Android over scroll glitch
I have an annoying glitch when using my expo app on Android. When I use ScrollView with overScrollMode set to 'always' or 'auto' and I scroll bit fast on beginning, I can reach bit further then where ...
3 votes
1 answer
149 views
Changing the position of a view while user scrolling
I have a long screen and I use NestedScrollView and a RecyclerView with it like the below screen: As you see I have a commentConatiner layout at the bottom of the screen, currently the user sees it ...
1 vote
1 answer
142 views
why is it showing me blank screen?
App.tsx import React from 'react'; import type {PropsWithChildren} from 'react'; import { Dimensions, FlatList, Image, Pressable, SafeAreaView, ScrollView, StatusBar, StyleSheet, ...
1 vote
0 answers
100 views
Minimal working example of using Android's OverScroller class?
I'm trying to understand how to use the OverScroller class in Android for smooth scrolling. While the documentation provides an overview, I'm having trouble piecing together a minimal working example ...
0 votes
2 answers
736 views
My ViewPager2 height (android:layout_height="0dp") is not covering the parent and filling the available space, when i put it in scroll view
here i have a ViewPager inside the scroll view its 'layout_height' is 0dp EXPECTED BEHAVIOUR : The viewPager should have covered the remaining screen REAL BEHAVIOUR : The viewPager height gets ...