am 55ee1d66: Merge "DOC CHANGE: Fix bug 3448489 - Monkeyrunner example" into honeycomb

* commit '55ee1d66981f1edef966562f11c60886138544ea':
  DOC CHANGE: Fix bug 3448489 - Monkeyrunner example
This commit is contained in:
Joe Malin
2011-02-14 11:28:52 -08:00
committed by Android Git Automerger

View File

@ -110,8 +110,17 @@ device = MonkeyRunner.waitForConnection()
# to see if the installation worked.
device.installPackage('myproject/bin/MyApplication.apk')
# Runs an activity in the application
device.startActivity(component='com.example.android.myapplication.MainActivity')
# sets a variable with the package's internal name
package = 'com.example.android.myapplication'
# sets a variable with the name of an Activity in the package
activity = 'com.example.android.myapplication.MainActivity'
# sets the name of the component to start
runComponent = package + '/' + activity
# Runs the component
device.startActivity(component=runComponent)
# Presses the Menu button
device.press('KEYCODE_MENU','DOWN_AND_UP')