691 questions
0
votes
0
answers
40
views
CollapsingToolbarLayout won’t fully collapse behind a “bottom sheet” NestedScrollView
I am trying to create a layout where:
A top image (30% of the screen) remains fixed initially.
A layout below behaves like a bottom sheet that can scroll over the image and cover the full screen.
I ...
1
vote
0
answers
74
views
WebView inside NestedScrollView in ViewPager2 Shrinks and Does Not Display Content Properly with Multiple Twitter Iframes
I’m working on a layout where I need to display two WebViews inside a NestedScrollView, and this NestedScrollView is placed inside a child fragment of a ViewPager2. The goal is to display HTML content ...
1
vote
0
answers
79
views
nestedScroll modifier not working as expected in compose
I was trying to achieve a lazy column with custom behavior. When the user pulls the lazy column after they reached the limits, I would show a refresh indicator by using the offset.
The problem is, ...
0
votes
1
answer
42
views
How to get single item which is visible to user in recyclerview but not all the loaded items from recyclerview?
Suppose we have pagination and after getting product from pagination api
we have to call another api only for that particular product which is visible to user
not all that product which get from ...
2
votes
1
answer
522
views
LazyColumn inside HorizontalPager becomes scrollable with a delay after page changed
I am working on a an android jetpack compose screen. Simply, the page has a TabRow with 3 tabs. Every tab has LazyColumn which shows some ui components in a scrollable manner. Also, there is one ...
0
votes
0
answers
51
views
NestedScrollView disable scrolling when recyclerview is visible
I am trying to disable NestedScrollView when my RecyclerView is visible. Below is my layout :
<RelativeLayout
android:layout_width="match_parent"
android:background="...
0
votes
1
answer
31
views
Determine recycler item above center or below for a recycler view nested in NestedScrollView
Have a recycler view nested in NestedScrollView
<CoordinatorLayout>
<NestedScrollView>
<RelativeLayout>
<RecyclerView>
Trying to scroll to a particular item in recycler view ...
3
votes
3
answers
9k
views
Nested Lazy Column in JetpackCompose
I want to use the lazy column under the lazy column and have a vertical scroll view in it. While using the vertical scroll in it, I had issues. Can anyone help me create a Nested Scroll view?
Lazy ...
0
votes
1
answer
38
views
ExpandableListView not pushing the UI under it when expands
below is my XML code, I have multi expandable list view (5) each one with a different adapter, and all the views are inside the vertical scroll view.
but when clicking on the header of each expandable ...
2
votes
0
answers
101
views
Can't detect all Swipes on NestedScrollView with embedded WebView
Need to reliably detect the left and right swipe on whole NestedScrollView.
I tried various options but nothing worked so far!
Please refer the code below -
Following is the layout
<?xml version=&...
0
votes
1
answer
86
views
SelectionTracker drag to select doesn't work for RecyclerView inside a NestedScrollView
Expected behaviour:
Tap and hold to start a selection with SelectionTracker then drag to select more items.
Actual behaviour:
One item gets selected, then NestedScrollView starts intercepting touch ...
0
votes
2
answers
3k
views
Nested Scrolling in Android compose
I have a Column and inside the Column, I have a Spacer with a specific size and a LazyColumn.
What is happening now is that when I want to scroll, First LazyColumn starts to scrolling, and when it ...
0
votes
1
answer
420
views
RecyclewView inside NestedScrollView cause UI freeze
I'm having a number of problems using a RecyclerView inside a NestedScrollView. I have a complete freeze of the UI when I have to do the set adapter.
I've seen in other posts that it's a known issue ...
0
votes
0
answers
878
views
RecyclerView inside NestedScrollView: scrolling is not working
I have RecyclerView inside NestedScrollView. What I want is to scroll entire content of NestedScrollView if NestedScrollViews content (including list passed to RecyclerViews adapter) is above certain ...
1
vote
1
answer
1k
views
ScrollView inside material top tabs navigation
I have this material top tabs navigation in react native :
<Tab.Navigator
initialRouteName="Screen1"
screenOptions={() => ({
swipeEnabled: true,
})}>
...
1
vote
2
answers
76
views
NestedScrollView not scrolling through all elements of RecyclerView
I have a RecyclerView displaying CardViews, which are expandable and retractable. I also have a LinearLayout of an ImageView and two Text Views displayed above it. I want to scroll the RecyclerView ...
2
votes
3
answers
2k
views
nestedscroolview doesn't scroll well inside another nestedscrollview
I have a bottom sheet dialog with 2 nestedscrollview, the outer one wrap the entire view, the inner one wrap a single textview, I have 2 problems:
1.
the the inner one can scroll only down, as you can ...
0
votes
0
answers
154
views
how can i make one Slivers AppBar With diffrent behavior and desgin , like WhatsApp desgin?
i started my project to make WhatsApp clone to learn
now i have chalange to my AppBar ( animated , scrollbe , design )
i have used
DefaultTabController
with : Scaffold
with : NestedScrollView
with : ...
1
vote
1
answer
433
views
NestedScrollView with wrapped RecyclerView's not scrolling
I have two separate horizontal RecyclerView's that are embedded in a vertical LinearLayout, that itself is contained within a NestedScrollView - The top and bottom views have different dataset and ...
0
votes
0
answers
74
views
RecycleView in NestedScrollView duplicate items and not showing all of the iteam in the list
I have the following problem My list has 24 items when is showing them on the NestedScrollView - ReycleView its show 21 items and duplicate 3 of them so 24 item and 2 or 3 item are not shown instead ...
-1
votes
1
answer
101
views
nested scroll view not working inside inner recycler view
I am making an app which has a main recycler view and an internal recycler view that goes inside the main recycler view. The problem is that the list of elements is not displayed inside the recycler ...
2
votes
0
answers
708
views
Android Jetpack Compose- Sticky UI vertical scrolling
I want to develop something which is mentioned in below link:
Sticky header similar like IOS
I have checked the nested scrolling from google nested scrolling but its not giving the exact behaviour. ...
0
votes
3
answers
51
views
Views are not shown properly inside ScrollView with RelativeLayout or ConstraintLayout
I am trying to achieve this...
Ok this looks good no problem..BUT
here's the problem, if this is on small screen then last view is not showing properly when scrolling to the end of screen.
I've ...
0
votes
0
answers
529
views
CoordinatorLayout with ViewPager2 and NestedScrollView is different then expected
When I built a layout with a coordinator layout, I have used the view pager2. The design blueprint is right while the result is wrong. The height of view pager is wrong, could you tell me where I am ...
2
votes
1
answer
2k
views
How to drag down a BottomSheet view from inside a NestedScrollView?
I have inside my BottomSheet view a NestedScrollView and I want to drag down the bottomSheet when scrolling down from the nestedScrollview but it is not working.
My XML code is like below :
<...