jfeinstein10 / SlidingMenu

An Android library that allows you to easily create applications with slide-in menus. You may use it in your Android apps provided that you cite this project and include the license in your app. Thanks!
Apache License 2.0
11.08k stars 5.05k forks source link

Method or way to load screen with sliding menu with animation #579

Open sgtcoder opened 10 years ago

sgtcoder commented 10 years ago

I am using the following block of code to access screens from the side menu.

Intent intent = new Intent(getActivity().getBaseContext(), EditAccount.class); startActivity(intent);

It loads correctly, but their are no animations and it flashes the screen when it loads. I was wondering if there is a block of code or method I can use to make the screen or Intent load smoothly with the sliding menu.

Thanks, Michael J Brancato

aldefy commented 10 years ago

hey offtopic , i have a successful listview attachted and working , now i wish to open different activites from each item , ur Intent code where does it go ?!

sgtcoder commented 10 years ago

It needs to go where you select the cell box. That would then fire a new intent.