I am trying to create a menu that slides up from the bottom. It starts with the menu\'s view just visible at the bottom of the screen, and then clicking it causes it to sli
Use the ViewPropertyAnimator:
ViewPropertyAnimator
if (view.getY() != margin) { view.animate().y(margin).setDuration(150).start(); }