Questions tagged [slidingdrawer]

SlidingDrawer is an Android View Widget that hides content out of the screen and allows the user to drag a handle to bring the content on screen.

From official documentation of SlidingDrawer class:

SlidingDrawer hides content out of the screen and allows the user to drag a handle to bring the content on screen. SlidingDrawer can be used vertically or horizontally. A special widget composed of two children views: the handle, that the users drags, and the content, attached to the handle and dragged with it. SlidingDrawer should be used as an overlay inside layouts. This means SlidingDrawer should only be used inside of a FrameLayout or a RelativeLayout for instance. The size of the SlidingDrawer defines how much space the content will occupy once slid out so SlidingDrawer should usually use match_parent for both its dimensions.

Tag Usage:

441 questions
3
votes
2 answers

Bootstrap3 drawer menu

Has anybody successfully implemented a drawer menu in bootstrap 3 yet? I've had a go with http://mmenu.frebsite.nl/ but cant seem to do it... http://goo.gl/C9ycJb. Or alternatively have you managed to convert the bootstrap standard collapse to…
Tom Rudge
  • 3,188
  • 8
  • 52
  • 94
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
3
votes
1 answer

Fragment layout loading delay

As per the answer here How to make fragments load faster? I put all tasks in an async task and still there's a delay while loading fragment. The fragment is a calculator, with 30 buttons and two text views. I have a sliding drawer and the delay…
3
votes
0 answers

how can i slow down the animation of the slidingdrawer

i already seen the link slidingdrawer-animation-velocity and i have already copy the source slidingdrawer and modify the value of private static final int ANIMATION_FRAME_DURATION = 1500 / 60; but it only effect the delay time of the…
cowboi-peng
  • 777
  • 2
  • 6
  • 24
3
votes
1 answer

SlidingPaneLayout.setShadowResource Android

I'm developing a APP with a Sliding Pane and works correctly, but I dont know how I can put a shadow like Hangouts Google APP. It's a bit hard to explain, see this: Im trying to use setShadowResource, but I dont know how to design the shadow in…
Hypnotize
  • 143
  • 2
  • 17
3
votes
1 answer

Overlay ActionBar with sliding drawer

Is it possible to overlay the actionbar with one specific view(i.e sliding drawer)? I know i can make the whole activity full screen and put the action bar on top of it, but i need to slide a sliding drawer on top of the action bar.
3
votes
0 answers

SlidingDrawer substitute component

I saw that SlidingDrawer has become deprecated from API level 17. Is there a similar component I can use. I need to be able to have a handle, pull it and see more content just like in SlidingDrawer
gop
  • 2,150
  • 5
  • 26
  • 54
3
votes
2 answers

YouTubePlayerSupportFragment within a SlidingDrawer

I am trying to place a YouTubePlayerSupportFragment within a SlidingDrawer view. However, when it runs the video is stopped after 1 second and the follow is posted in LogCat: W/YouTubeAndroidPlayerAPI(1778): YouTube video playback stopped due to…
Milo
  • 1,017
  • 3
  • 16
  • 22
2
votes
2 answers

Need assistance with jQuery and ASP.NET want to show/hide a panel on click of a button, but the postbacks mess it up

RESOLVED how do i set question to resolved? lol Anyways here is the sollution, I had my friend help me and he did it! First since as I said I was using an update panel the jQuery didn't register the partial postbacks from it and that was the main…
TosheX
  • 64
  • 1
  • 8
2
votes
1 answer

SlidingDrawer - Resize view instead of overlap

When I drag the handle to bring the content of SlidingDrawer on screen (it occupies 1/3 of the screen), it will overlap the main view. I want the main view to be always visible and resize it when the SlidingDrawer is open. It is possible to…
kukukk
  • 138
  • 1
  • 9
2
votes
1 answer

ScrollView Not Scrolling within SlidingDrawer

I have an XML with a hierarchy like such: |- Relative Layout |----> TextView |----> TextView |----> Gallery |----> Sliding Drawer |----> Button (handle for Sliding Drawer) |----> ScrollView |---->…
Nick Betcher
  • 2,026
  • 5
  • 19
  • 25
2
votes
1 answer

Android SlidingDrawer Position Handle Offscreen

Is it possible to position a SlidingDrawer so that the handle is just below the bottom of the screen? The functionality that I'm going for is that a user will press a button (not attached to the drawer) to slide the drawer up from below the screen.…
Brian
  • 953
  • 4
  • 15
  • 35
2
votes
0 answers

Android: Get SlidingDrawer Handle position

I would like to perform some transparency changes to views which will be hidden when the user drags the handle of a SlidingDrawer manually. The "setOnDrawerScrollListener" only triggers onScrollStarted and onScrollEnded, but I want to slowly fade…
Kratos
  • 23
  • 3
2
votes
0 answers

Android: SlidingDrawer ignores requestLayout()

It appears that SlidingDrawer ignores calls to requestLayout() and forceLayout(). I have a SlidingDrawer in the bottom of my layout. This SlidingDrawer has a simple layout set as its android:handle. In this handle layout, there is an ImageView, and…
Vaiden
  • 15,728
  • 7
  • 61
  • 91
2
votes
3 answers

Relative Layout, SlidingDrawer and ListView

I am trying to build a ListView Activity with a toolbar at the top. The rightmost tool in this toolbar will be a handler to a horizontal SlidingDrawer which will provide a sliding EditText on top of the other tools. First I tried to achieve this…
ChD Computers
  • 3,135
  • 3
  • 23
  • 33