| android Programming Glossary: findlayoutAndroid - How to make slide menu like facebook, spotify and Google + http://stackoverflow.com/questions/11465774/android-how-to-make-slide-menu-like-facebook-spotify-and-google  P so this is a picture of how my sliding menu will going to work 1.Find.xml later in the code it will be refer as findLayout xml version 1.0 encoding utf 8 RelativeLayout xmlns android http schemas.android.com apk res android android layout_width.. R.anim.other_slide_out otherSlideOut.setAnimationListener this public void toggleSliding  if isOtherSlideOut check if findLayout is already slided out so get so animate it back to initial position  filterLayout.startAnimation filterSlideOut filterLayout.setVisibility.. filterSlideOut filterLayout.setVisibility View.INVISIBLE otherLayout.startAnimation otherSlideIn  else slide findLayout Out and filterLayout In  otherLayout.startAnimation otherSlideOut filterLayout.setVisibility View.VISIBLE filterLayout.startAnimation.. 
 |