Sliding transition not smooth in SlidingMenu Lib Android

android, slidingmenu

Solution

I found solution for my problem.

What I did is just add `android:hardwareAccelerated="true"`

in `application` tag in `AndroidManifest.xml`.

So now its sliding smoothly as I wanted.

Problem

I am using Sliding Menu lib (link) for getting the sliding menu like Facebook app and its really very cool. I have integrated it into my project by using following code and its working. ``` slidingMenu = new SlidingMenu(this); slidingMenu.setMode(SlidingMenu.RIGHT); slidingMenu.setShadowDrawable(R.drawable.shadowright); slidingMenu.setShadowWidth(80); slidingMenu.setBehindScrollScale(0); slidingMenu.setBehindOffsetRes(R.dimen.behind_offset); slidingMenu.setFadeDegree(0); slidingMenu.attachToActivity(this, SlidingMenu.SLIDING_WINDOW); slidingMenu.setMenu(R.layout.popupmenu); ``` But issue is when I click on right most button to get sliding menu It slide as I want but the transition is not smooth. It start to slide stuck for fraction of seconds and again continue to slide. So how can I use it to slide smoothly.

Original source