Android Sliding Panel with Showing icons only when it is collapsed - android

I want to implement sliding Menu like below images ,I am using SlidingPaneLayout to create Left Sliding Menu but How i can make it to behave like below images.
Now when some one close it by Either top left icons click or by drag to left it should be close like below shown image.
This image are just for giving idea of what i am try to do in my sliding Menu .
Let me known that some known how to achieve such in android.

Related

Creating a Sliding Menu with Overlaying Image

I'm trying to create an activity that has a sliding drawer at the bottom and allows the user to slide up and reveal a menu (shown as the grey area in my pictures). I'm currently having two issues:
Sliding Animation: When the user begins to drag, I want the Text and image to dynamically re-size and move as the drawer is dragged up (see pictures below). I have a working sliding drawer, but no animations.
Round Image: I want the round image (seen in the pictures below) to sit halfway on the sliding layout, but I can't seem to figure out how to do this. Any suggestions?
Here are the pictures showing what I'm trying to achieve:
Sliding drawer fully closed: link
Sliding drawer open a litte: link
Sliding drawer open more: link
Sliding drawer open all the way: link
(sorry, I don't have the rep to directly post the images)
You are looking for Design Library's Collapsing Toolbar class which you should check instead of reinventing the wheel. There's open source sample app you may want to check:
https://github.com/chrisbanes/cheesesquare

Add a small tab on left drawer

I am new to android dev. I have a problem of adding a small tab on my left drawer.
Because it may be hard for user to detect that I have a left drawer so I want to add a tab to let people notice.
Here's the screenshot of my app.enter image description here
I hope it can have a small tab like this
Can you give me some hint to start?
You can just put a view on the left of your layout using relative layout and on click of that view you can just open the drawer by calling:
mDrawerLayout.openDrawer(Gravity.START)
This will open the drawer in the same way it open when action bar icon is clicked.

How to implement swipe on radial menu to make the menu move out and in of the screen

I have implemented radial menu functionality in my android app. It is semicircular radial menu which is present in the left hand side of the screen.
Now I want to implement swipe on it so that I could swipe it out and in whenever I want to toggle between the menus.
Similar to the multi window functionality we can see in the new galaxy devices....
When I would swipe out, a small image or hint would be present in the extreme left to know about the presence of the menu..so when I would swipe right again the radial menu would come out ....
Image of my radial menu is attached ..
Is there particular api I need to refer?
I

Sliding effect for opening menu in android

I want to open a sliding menu when we click on top button. Please check the below image. when i click on red marked image/button then how can i open a sliding menu/list items as you can see in 2nd image.
When this menus gets open then main window get slide toward right side of the screen where small part of the main screen will be visible.
I am not sure if this menu is a list of view!! Please help me out.
The best Library doing that is SlindingMenu from jfeinstein10 on Github.
Design your layout with two panels. Left panel with visibility GONE. And then in onClick method of your button at top-right, make visibility of left panel VISIBLE. You can create a Animation to open left panel smothly.

Implement Facebook styled sliding menu sliding from right to left

I tried to implement sliding menu in my application. What i want is that there is a button on the top right corner of the screen. And sliding menu should come up from right to left which is reverse slide of facebook styled sliding. In Jfeinstein Sliding Menu, Sliding menu come out from left to right. I tried to implement the source to make it happen from right to left. But unfortunately, I still can't get it. Any ideas would be appreciate.
There is a branch called "sliding right" in Jfeinstein Sliding Menu on github.
This is a demo project to explore how to implement a sliding menu like Facebook and others use.
android-sliding-menu-demo
android-fb-like-slideout-navigation
I made a video (3 parts) on youtube on how to make a sliding menu like the on you are looking for. I show you how to set up the project and get everything linked up.
http://www.youtube.com/watch?v=tJJMyzdB9uI
The cool thing about ECSlidingViewController (Its the one I use) is that just about everything you want to configure (how far a view slides, the animations, left or right side) is done with a single line of code. When setting it up, I tell you where you can change it to be left or right side.
Hope this helps.

Categories

Resources