Questions tagged [android-sliding]
183 questions
3
votes
1 answer
Position ViewPager's (Carousel/Slider) indicators (dots) in bottom using TabLayout android studio
I want to position my dots in bottom.. I dont know why they are in top of my viewPager(image below)
any solution ?
my activity_main.xml :

Mourad Barkati
- 35
- 6
3
votes
3 answers
Sliding layout below status bar in Umano SlidingPanel
I have implemented UmanoSlidingPanel using https://github.com/umano/AndroidSlidingUpPanel . Everything is working fine except that my sliding panel when expanded, the sliding content (sliding_view) is going below the status bar. How can I avoid…

Siju
- 2,585
- 4
- 29
- 53
3
votes
2 answers
SlidingTabLayout with subtabs
I would like to implement subtabs in SlidingTabLayout.
I searched a lot, but I don't have found anything like it.
Does anyone have a solution or a suggestion for implementing this?
Thanks.

user2865012
- 53
- 5
3
votes
1 answer
How to change navigation of custom sliding menu
I am trying my custom sliding navigation. I know there are already lot's of tutorial or library is available but this is for my own purpose.
So basically i am trying to open sliding menu and it is opening left to right now i want to change it's…

InnocentKiller
- 5,234
- 7
- 36
- 84
3
votes
1 answer
SlidingMenu(jfeinstein) - How to control secondary sliding menu
I am using jfenstein's sliding menu lib. But I need to control two sliding menus separately. Sometimes second has to be disabled.And sometimes first slidingmenu has to be disabled.
When I have used…

Aykut Celik
- 511
- 2
- 7
- 18
3
votes
3 answers
Positioning AndroidSlidingUpPanel to a specific height
I am exploring https://github.com/umano/AndroidSlidingUpPanel library. When I slide the bottom panel, on slide complete it acquires complete screen area.
Can anyone help me, How to stop the bottom panel to a certain height, for e.g. slide it till…

V A
- 131
- 1
- 7
2
votes
2 answers
Changing alignment (left, right etc) of SlidingDrawer handle
(I've seen a few related questions but no answers so putting this out on the odd chance someone has done something similar or can point me in the right direction...)
The standard Android SlidingDrawer (and also Alessandro Crugnola's multi-direction…

Adil Hussain
- 30,049
- 21
- 112
- 147
2
votes
0 answers
Sliding Menu Always FullScreen
I'm trying to make sliding menu full screen but I can't.
If i use android:fitsSystemWindows="false", it's like the first picture in the photo.
If i use android:fitsSystemWindows="true", it's like the second picture in the photo. Sliding menu is…

TheAnswer042
- 61
- 1
- 6
2
votes
1 answer
Elevation on SlidingTabLayout in pre lollipop device
"Elevation" make Sliding Tab Layout worked fine on Lollipop device but tabs will disappeared on pre-lollipop device. I wondering is there any way to add elevation on SlidingTabLayout for pre-Lollipop devices.
Here is my .XML file :

Wei Loon Wong
- 450
- 1
- 7
- 23
2
votes
4 answers
Is there anyway to provide click listener to slider layout in daimajia AndroidImageSlider?
In my project there is an image slider done by daimajia AndroidImageSlider . When i click on image i want to open another activity/page. I have tried and inserted an linearlayout inside the sliderlayout. But click listener in this linearlayout makes…

Bincy Baby
- 3,941
- 5
- 36
- 62
2
votes
1 answer
SlidingPaneLayout slide pane overhanging main pane
Hi I am building a map app and trying to have it so when you hit click on a maker it opens the sliding pane. It works just the way i want but when the pane is closed you can still see a bit of it overhanging. I want to hide that off the screen so…

tom
- 21
- 1
2
votes
2 answers
Slide between couple of fragments
I want to slide between fragments - not the whole screen , only part of it.
I saw SlidingPaneLayout but it didnt quite do what I wanted.

fofo
- 69
- 1
- 9
2
votes
2 answers
SlidingTabLayout: why preload next tab?
I've implemented SlidingTabLayout on my application, following https://github.com/google/iosched/blob/master/android/src/main/java/com/google/samples/apps/iosched/ui/widget/SlidingTabLayout.java and tutorial all google. All works, but I don't…

helloimyourmind
- 994
- 4
- 14
- 30
2
votes
1 answer
How to switch tabs with SlidingTabStrip and ViewPager programatically
I am having trouble switching SlidingTabStrip tabs programatically.
I am using SlidingTabStrip in combination with viewpager.
I use
mSlidingTabs.setViewPager(mPager);
mViewPager.setCurrentItem(position);
This moves the viewpager to the selected…

akoul889
- 21
- 4
2
votes
1 answer
Android cannot resolve sybmol getFragmentManager()
I am using this tutorial to create sliding menu for application but I get error in the following lines, and I am unable to solve it:
getFragmentManager();
getActionBar();
After adding AppCompat to project many problems can resolve.
My…
user4108483