I am newbie in android programming, but I'd like to try any application, I already got Navigation Drawer menu, which shows fragments, but in one of the fragments I want another drawer from right side, is there any way to do it ? I am using ActionBarSherlock. Any help would be good. Thanks :)
Sliding menu will solve your problem.
gibhub library
There is even a sample app to check it out.
google play store sample app
Related
I want to create an activity with a side panel. More precisely, i want an activity similar to Google Play Store app (i.e. if swiped left-rigt, a panel opens).
Please help me solve this problem.
It's called navigation drawer.
I'd suggest read up on it on official site, it has even a sample app you could try it on.
https://developer.android.com/training/implementing-navigation/nav-drawer.html
I've implemented the new Navigation Drawer pattern in an Android app and for some reason it will stick with the 20dp tab preview probably close to 10% of the time.
I've implemented it with a complete copy paste of the demo app so I was surprised not to find anyone else having this issue on SO. Is nobody else seeing this? It happens on both my test devices and I cannot recreate it at all on any of the google apps that have a drawer.
Any ideas of what might cause this? I can paste my code but it's the same as the demo app. The only difference is what I have in my drawer layout (two ListViews and a spinner, but I'm only populating one of the ListViews like the demo app does).
EDIT: This can be recreated consistently in the official demo app.
A video demonstration: http://youtu.be/aEVHannoYvQ
There is a open issue on the Android issue Tracker , Star it ;)
Android Issue Tracker(NavigationDrawer)
hopefully it gets fixed :)
EDIT: Seems there is a fix, read this: ClickMe
I am developing an app for Android, and would like to have a menu button in the top left corner, above a webview. When this button is pressed, I want a menu filling almost the entire screen to slide in from the side, as in Evernote's android app. How is this most easily achieved?
I have googled quite a bit without finding an answer, all help is appreciated.
There are many different libraries you could use to implement a sliding menu like this. I'm currently using this library which is very easy to implement. It also uses ActionBarSherlock which is included.
The menu is probably programmed using ActionbarSherlock and the transition between activities is explained here:
Duplicate
Without any code this is all we can do for you. Hope this might help.
I am trying to implement an ActionBar into my existing project but don't know where to start. I immediately started building a classic menu button menu, before I realized that it is deprecated and some devices (nexus 7) can't access such menus.
What is a good way of implementing an ActionBar over a map? I am already deep into this project and it is due in a couple of days so rewriting the program is not really an option.
What I am really looking for is two or three simple options always available at the top or bottom of the map which extend to a list if clicked. Thanks !
For implementing ActionBar in a back-compatible way you would probably want to use ActionBarSherlock and its Maps plugin.
Take a look at its samples, it's pretty simple to use.
So, im developing a mobile app and I ve this doubt that I hope someone can solve. I have a List with projects. What I want is, when I click in one of the projects, I dont want to go to another page, I just want to see like a toolbar right under the project I just clicked. My idea is to follow basically the same concept like the app Any.Do .
Here it is what I would like to do.
I would appreciate if someone could help me on this.
Have a look at the QuickActionBar from GreenDroid project.
Cyril has created a GDCatalog sample app (available from the market), which also features this (src).