Questions tagged [android-scrollable-tabs]
25 questions
28
votes
13 answers
How to scroll tablayout programmatically - Android
I have created 30 scrollable tabs using tablayout.
So first three tabs are visible on screen and rest of them are invisible which can be scroll using swipe gesture.
The problem is when I am selecting last tab programmatically but it is not get…

Mohit Charadva
- 2,555
- 1
- 22
- 30
11
votes
6 answers
PullRefreshIndicator overlaps with ScrollableTabRow
I'm starting to learn about Jetpack Compose. I put together this app where I explore different day-to-day use cases, each of the feature modules within this project is supposed to tackle different scenarios.
One of this feature modules – the…

4gus71n
- 3,717
- 3
- 39
- 66
10
votes
2 answers
Android: Swipey tabs without Action Bar
I've created a ViewPager. and I want to add scrollable tabs (swipey tabs) to make it more flexible (like google play).
and all the tutorials that i found using ActionBar.
How can i do it without using ActionBar?

IBRA
- 1,502
- 3
- 24
- 56
9
votes
3 answers
Ionic scrollable tabs
Hello I was wondering before I made something my self if ionic has something like scrollable tabs. I was looking and seen it in the fitrpg app which was made with ionic but I didn't know if it was custom or not. I'm going to use it for a list like…

epelc
- 5,300
- 5
- 22
- 27
5
votes
2 answers
Reduce Spacing between Scrollable tabs in compose
I am trying to create a animation where there is scrollable component that scrolls horizontally. Something like
I thought of using Scrollable tabs and it works to some extent except, I am still figuring out how to reduce space between the crop…

Raghunandan
- 132,755
- 26
- 225
- 256
3
votes
1 answer
Android: How to fill tabs with scrolling in custom tabLayout?
I have a tablayout with 6 tabs. Tabs are fixed in the display but their text does not show completely. I do the solutions in here so that I can summarize them in these lines:

BeginnerProgrammer
- 664
- 3
- 13
- 27
3
votes
0 answers
How do I customize the scrollable tab in Android Studio like this?
This
contains a picture which has 'All' selected in the scrollable tab. So when an item in the tab is selected, an inverted triangle must appear as it appears in the picture below the word 'All'. How do I set that effect for an Android App in…

Aishwarya
- 135
- 1
- 1
- 9
2
votes
1 answer
How to add stickyness to fullscreen ScrollableRow elements with Jetpack Compose?
I have a ScrollableRow with lets say 5 fullscreen composables.
ScrollableRow(
modifier = Modifier.fillMaxSize(),
scrollState = scrollState) {
myData.items.forEachIndexed{ index, pageItem ->
showPage(pageItem)
…

Edna Krabappel
- 362
- 1
- 2
- 16
2
votes
1 answer
Storing data in Swipeable UI. Get Context in Fragments
I am using the Scrollable tabs + Swipe Navigation for my project. I used Shared Preferences to store data of a form.
My onClick function for the save button of the page.
public void onClick(View v) {
SharedPreferences.Editor editor3 =…

Manan Dhawan
- 108
- 6
1
vote
0 answers
Native Base Are Flickering React Native Expo
I'm using ScrollableTab from Native Base library in my expo app. When I navigate to this screen so all tabs are flickering continue when I click any of them so it stops flickering and working fine and when I directly open tabs screen so it also…

Zain Khan
- 1,644
- 5
- 31
- 67
1
vote
2 answers
How to set the size of text in PagerTitleStrip
I am trying to make scrollable tabs and want to set the size of the title .How can I do this as I cant set the text size in PagerTitleStrip in the xml.Can some one tell me how to do this.

Neelay Srivastava
- 100
- 1
- 2
- 17
1
vote
1 answer
Is there any way to have embedded scrollable tabs?
I have a layout in my head that should look like that: https://i.stack.imgur.com/1UbUN.png
Only part that will be dynamic is the blue one. I don't know the number of tabs that will be created before I load the activity, hence the number is acquired…

Nick Pakhomov
- 313
- 4
- 13
0
votes
2 answers
List view is not loading records correctly from some point
I have an scrollable list to which I am adding some records dynamically. It works very simple, I add records to ArrayList, than pass it to adapter. The problem is when I am scrolling, 3 first records always get loaded, than during scrolling first…
0
votes
1 answer
CoordinatorLayout scrolling does not work while Toolbar is added via
So i have been learning a tutorial to hide tool bar in CoordinatorLayout while i scroll up my view pagers first fragment but toolbar is not moving up or hiding while i scroll up.
The toolbar is added in Coordinator layout using < include layout / >…

Mr.PooP
- 15
- 4
0
votes
1 answer
Tabs in CollapsingToolbarLayout overlapping RecyclerView
I have a TabLayout which has a ViewPager that selects between two fragments which both have vertical scrolling RecyclerViews. I have a scrolling TabLayout so that when I scroll the RecyclerView, the tabs disappear. However, it starts off with the…

Paradox
- 4,602
- 12
- 44
- 88