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
5
votes
0 answers

App crashing using MMDrawerController Gesture in drawer

I am using MMDrawerController for showing drawer. My app is crashing on clicking on the drawer menu options. It works well in iOS9 but crashes in iOS8. Does anyone have any idea about what is happening here. Am I missing something here? I am getting…
kalim sayyad
  • 1,076
  • 1
  • 9
  • 13
5
votes
3 answers

Highlighting Selected item in menu-drawer/sliding menu

Library Used: https://github.com/SimonVT/android-menudrawer https://github.com/JakeWharton/ActionBarSherlock https://github.com/JakeWharton/Android-ViewPagerIndicator Question: I have been trying to implement highlighting on the menudrawer…
5
votes
1 answer

ListView in SlidingDrawer loses focus after onResume

I use a SlidingDrawer as my main layout. Inside the content area I have a Fragment (which contains a ListView) When the activity first loads everything is great, the listview scrolls correctly. When I start a different activity and then come back,…
Leo
  • 4,652
  • 6
  • 32
  • 42
5
votes
2 answers

Sliding drawer looks like semi circle

Android provides the SlidingDrawer by default looks like below image - Image http://www.gru.at/android/wp-content/uploads/2010/09/s_open.png Can we customize this SlidingDrawer looks like semi-circle type with buttons included. For, example take a…
Praveenkumar
  • 24,084
  • 23
  • 95
  • 173
4
votes
1 answer

Same SlidingDrawer in all activities?

I have a slidingDrawer in my application that contains links which should be accessed by all activities. Is it possible to create a single slidingDrawer and extend it to all activities? Any example would be very helpful.
XurajB
  • 820
  • 1
  • 14
  • 29
4
votes
1 answer

android Is it possible to have multiple SlidingDrawer

Kind of new to many things in android and here is one. Playing around with the Android SlidingDrawer widget. Would really like to have 4 of them on the right side of the screen. Each one filling the screen as you pull them out. I try in my…
Erik
  • 5,039
  • 10
  • 63
  • 119
4
votes
1 answer

how to make SlidingDrawer transparent

Im currently trying to add the SlidingDrawer in my application.. My activity consists GridView and the SlidingDrawer will be coming from bottom to top.. Now my problem is i need to make the SlidingDrawer as transparent and also move my GridView to…
Hussain
  • 5,552
  • 4
  • 40
  • 50
4
votes
0 answers

Android - DrawerLayout and SlidingUpPanel together

I have a Main activity at the moment which uses a DrawerLayout navigation, this can be used to open up multiple fragments in the FrameLayout, this works great. However i now need the ability to have a SlidingUpPanel on the same activity to display…
Paul Hinett
  • 1,951
  • 2
  • 26
  • 40
4
votes
1 answer

Sub menu for sliding menu in android

I have a sliding menu app like Facebook user interface. I want to create a submenu as shown in the picture below. How can we create a submenu like this? Please anyone help me for this. Thanks in advance.
athulya k
  • 145
  • 2
  • 10
4
votes
1 answer

How to stop main content re-sizing of umano AndroidSlidingUpPanel when panel is set to default panel height

I am using umano AndroidSlidingUpPanel in my Android project. Here I am using Google Map as my main content. Follow is the relevant XML file.
AnujAroshA
  • 4,623
  • 8
  • 56
  • 99
4
votes
4 answers

Android Sliding Up View

I need to do a Sliding Up View wich should slide up from the bottom of the screen when I click a button. It has to show on the bottom of the screen and I need to slide/drag it to the center of the screen. The images below explain it better. almost…
4
votes
2 answers

Two menu Android app

The company I work for has an iOS application that has two sliding menus: one on the left that is used for navigation, and one on the right that displays app wide contextual info and actions. The iOS application has an ActionBar like widget that…
kierse
  • 373
  • 4
  • 10
4
votes
1 answer

Impliment Slidingdrawer with viewpager where slidingdrawer resides on the viewpager

I want to display a Viewpager with slidingdrawer.Viewpager is used to scroll the images and on top of that viewpager I want to place one sliding drawer(top to button). i attached my sample code. If you have any idea about how to implement this…
4
votes
1 answer

Navigation Drawer not working when startActivity is used in first case of selectItem

I have this problem with Google's Navigation Drawer where starting the activity specified in the first case (case 0) in my selectItem method breaks and returns to the previous activity. private class DrawerItemClickListener implements…
Ron
  • 1,721
  • 1
  • 19
  • 43
4
votes
2 answers

Updating the Navigation Drawer (with DrawerLayout) when back button is pressed

I am designing an app on the Android with a Navigation Drawer. Lets say I navigate through fragments and go from Fragment 1 to Fragment 2. Everything works fine but when I am in Fragment 2 (which loads from the navigation drawer) and click the…
alecnash
  • 1,750
  • 1
  • 18
  • 42
1 2
3
29 30