Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
Hi friends i have one small clarification in which basic version the sliding menu can be applicable? Please help me friends. thank you.
Refer this link http://www.androidhive.info/2013/11/android-sliding-menu-using-navigation-drawer/. This Sliding menu is supported from Android API 11 version only.
If you want to implement for lower end of device, you can check out https://github.com/thecodepath/android_guides/wiki/Common-Navigation-Paradigms
You can use the native Navigation Drawer as Sliding Menu. Though The Navigation Drawer supports only API 11 and above. You can use the support Library and use it for Lower versions also. The performance of Navigation Drawer is better. Refer this links for Navigation Drawer
http://developer.android.com/design/patterns/navigation-drawer.html
http://developer.android.com/training/implementing-navigation/nav-drawer.html
And Visit this link for support Library
http://developer.android.com/tools/support-library/index.html
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am trying to add Sliding menu's in android app, but I didn't understand from where to add this. Most of today's apps have this. Please suggest how do I start and add Sliding menu...
Thanks in advance
I think what you are looking for is how to make a navigation drawer. You should take a look at this documentation https://developer.android.com/training/implementing-navigation/nav-drawer.html.
Moreover, at Google I/O, Google released the "Android design library" with some cool enhancements to build a navigation drawer. You can find a blog post about it here http://android-developers.blogspot.fr/2015/05/android-design-support-library.html
You can also check this Github for an example of how to implement it : https://github.com/chrisbanes/cheesesquare
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I need create a Navigation Drawer, i'm newbie on mobile applications.
The Fly Out Sample created by "rafelcnet" don't build for me:
https://github.com/rafelcnet/Xamarin
I'm using VS 2012 with Xamarin.
Please I need Help. I need create a portable application.
I need a static and dynamic navigation drawer.
James Montemagno's repository on Xamarin Navigation Drawer is a really good starting point. Download the project, run it and debug it. Look at the code and try to understand what's going on and how things are built. Then you can duplicate the approach to Navigation Drawer for your app.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
i want to my application could run in all of android version and after any research about it i'm find to component about that such as Sherlock and AppCompat whats difference Sherlock and AppCompat? which is best for my application to work all of android version such as Fragment , Actionbar or etc?
Sherlock is Hard to import and use that in Eclipse and Intllij and i can not work simply that.
#TuxWorld, Action bar is a component that adds a bar on top of your application.
Android provides a native implementation as part of SDK which is the "AppCompat" version you are referring to. "Sherlock" is an extension to the native implementation (Before there was a native implementation, Sherlock was the way to add action bar). Sherlock version is an open source library that you will have to add to your project where as SDK is already available for you. For most cases using Actionbar provided by AppCompat would fine. However depends on what you are really trying to achieve.
Hope this helps.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I am a newbie to Android and want to explore. I see samples that I can workout from the documentation, But I am keen on developing a top to bottom sliding drawer instead of the left to right Navigation drawer. All I can see from the reference documentation are classes methods and their function. Please give me tips on how to work with these methods without seeing the samples. All I want is to be a good programmer and learn to code myself. Is that possible.
You can see this open source project Clean Calculator that contains a bottom to top navigation drawer you can download it and see the code how it was written, also to have a good start you might like to follow the android training classes Android site, also you can see this book Android for Programmers: An App-Driven Approach (Deitel Developer Series)
which is very good when you learn the basics, the following book too is good Beginning Android 4 Application Development, and Androidhive contains many tutorials too
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
I've been looking at a few ActionBar scripts that support SDK 1.6 and above. Here's the three main ones I'm looking at:
https://github.com/johannilsson/android-actionbar
http://github.com/JakeWharton/ActionBarSherlock
http://android.cyrilmottier.com/?p=240
Which one do you recommend? or if you have another suggestion, let me know.
ActionBarSherlock is great library I've used it on several projects from Android 2.1 to 4.0 (it;s compatible to 1.6), the dev Jake Wharton is great at including the latest features from the Android compatibility library very quickly.
Here's a link to the demo app useful for seeing some of the things you can do with it.
I recommend google ioschedule app pattern. You could download it's source code.
Why not just use the actionbar that is provided in the backward compatibility api?