Android - See all Application that on background

Hi, Im using driver.pressKeyCode(AndroidKeyCode.HOME); to press on the HOME button

And driver.pressKeyCode(AndroidKeyCode.BACK); to press on the back button

What is the coke to press on the button that show me all the background APP ? (Where i can browse through them and close whatever I want)

Thanks !

Try:

driver.pressKeyCode(AndroidKeyCode.KEYCODE_APP_SWITCH);

Its working, thanks !!!