MonkeyRunner
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
包含靜態公用程式方法的 monkeyrunner 類別。
摘要
方法 |
void
|
alert
(string message,
string title,
string okTitle)
針對執行目前程式的處理程序顯示快訊對話方塊。
|
integer
|
choice
(string message,
iterable option,
string title)
針對執行目前程式的處理程序顯示包含選項清單的對話方塊。
|
void
|
help
(string format)
使用指定格式,以類似 Python pydoc 工具的樣式顯示 monkeyrunner API 參考資料。
|
string
|
input
(string message,
string initialValue,
string title,
string okTitle,
string cancelTitle)
顯示接受輸入內容的對話方塊。
|
void
|
sleep
(float seconds)
讓目前程式暫停指定的秒數。
|
MonkeyDevice
|
waitForConnection
(float timeout,
string deviceId)
嘗試在 monkeyrunner 後端與指定裝置或模擬器之間建立連線。
|
公用方法
string
alert
(
string message,
string title,
string okTitle)
針對執行目前程式的處理程序顯示快訊對話方塊。這是強制回應對話方塊,因此程式會暫停,直到使用者點選對話方塊按鈕為止。
引數
message |
對話方塊中顯示的訊息。 |
title |
對話方塊的標題,預設值是「Alert」。 |
okTitle |
對話方塊按鈕中顯示的文字,預設值是「OK」。 |
integer
choice
(string message,
iterable choose,
string title)
針對執行目前程式的處理程序顯示包含選項清單的對話方塊。這是強制回應對話方塊,因此程式會暫停,直到使用者點選對話方塊按鈕為止。
引數
message |
對話方塊中顯示的提示訊息。 |
choices |
含有一或多個物件 (以字串顯示) 的 Python 疊代器。建議格式為字串陣列。 |
標題
|
對話方塊的標題,預設值為「Input」。 |
傳回
-
如果使用者選擇某個選項並按下「OK」按鈕,這個方法會傳回可疊代項目中選項的索引 (從 0 開始)。如果使用者按一下「Cancel」按鈕,這個方法會傳回 -1。
使用指定格式,以類似 Python pydoc
工具的樣式顯示 monkeyrunner API 參考資料。
引數
format |
輸出內容使用的標記格式。可能的值包括純文字的「text」或「html」。 |
顯示接受輸入內容並傳回程式的對話方塊。這是強制回應對話方塊,因此程式會暫停,直到使用者點選對話方塊按鈕為止。
對話方塊包含兩個按鈕,其中一個顯示 okTitle 值,另一個顯示 cancelTitle 值。如果使用者按一下 okTitle 按鈕,系統就會傳回目前輸入框中的值。如果使用者點選 cancelTitle 按鈕,則會傳回空字串。
引數
message |
對話方塊中顯示的提示訊息。 |
initialValue |
對話方塊中顯示的初始值,預設值為空字串。 |
title |
對話方塊的標題,預設值為「Input」。 |
okTitle |
okTitle 按鈕中顯示的文字,預設值為「OK」。 |
cancelTitle |
cancelTitle 按鈕中顯示的文字,預設值為「Cancel」。 |
傳回
-
如果使用者按一下 okTitle 按鈕,這個方法會傳回目前對話方塊輸入框中的值。如果使用者點選 cancelTitle 按鈕,則會傳回空字串。
void
sleep
(
float seconds
)
MonkeyDevice
waitForConnection
(float timeout,
string deviceId)
嘗試在 monkeyrunner
後端與指定裝置或模擬器之間建立連線。
這個頁面中的內容和程式碼範例均受《內容授權》中的授權所規範。Java 與 OpenJDK 是 Oracle 和/或其關係企業的商標或註冊商標。
上次更新時間:2025-07-27 (世界標準時間)。
[null,null,["上次更新時間:2025-07-27 (世界標準時間)。"],[],[],null,["# MonkeyRunner\n\nA monkeyrunner class that contains static utility methods.\n\nSummary\n-------\n\n| Methods ||||||||||||\n|------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---|---|---|---|---|---|---|---|---|---|\n| void | [alert](#alert) (*string* message, *string* title, *string* okTitle) Displays an alert dialog to the process running the current program. |\n| *integer* | [choice](#choice) (*string* message, *iterable* choices, *string* title) Displays a dialog with a list of choices to the process running the current program. |\n| void | [help](#help) (*string* format) Displays the monkeyrunner API reference in a style similar to that of Python's `pydoc` tool, using the specified format. |\n| *string* | [input](#input) (*string* message, *string* initialValue, *string* title, *string* okTitle, *string* cancelTitle) Displays a dialog that accepts input. |\n| void | [sleep](#sleep) (*float* seconds) Pauses the current program for the specified number of seconds. |\n| ` `[MonkeyDevice](/tools/help/MonkeyDevice)` ` | [waitForConnection](#waitForConnection) (*float* timeout, *string* deviceId) Tries to make a connection between the `monkeyrunner` backend and the specified device or emulator. |\n\nPublic methods\n--------------\n\n#### *string*\nalert\n( *string* message, *string* title, *string* okTitle)\n\n\nDisplays an alert dialog to the process running the current\nprogram. The dialog is modal, so the program pauses until the user clicks the dialog's\nbutton. \n\n##### Arguments\n\n| message | The message to display in the dialog. |\n| title | The dialog's title. The default value is \"Alert\". |\n| okTitle | The text displayed in the dialog button. The default value is \"OK\". |\n|---------|---------------------------------------------------------------------|\n\n#### *integer*\nchoice\n(*string* message, *iterable* choices, *string* title)\n\n\nDisplays a dialog with a list of choices to the process running the current program. The\ndialog is modal, so the program pauses until the user clicks one of the dialog's\nbuttons. \n\n##### Arguments\n\n| message | The prompt message displayed in the dialog. |\n| choices | A Python iterable containing one or more objects that are displayed as strings. The recommended form is an array of strings. |\n| title | The dialog's title. The default is \"Input\". |\n|---------|------------------------------------------------------------------------------------------------------------------------------|\n\n##### Returns\n\n- If the user makes a selection and clicks the \"OK\" button, the method returns the 0-based index of the selection within the iterable. If the user clicks the \"Cancel\" button, the method returns -1. \n\n#### void\nhelp\n(*string* format)\n\n\nDisplays the monkeyrunner API reference in a style similar to that of Python's\n`pydoc` tool, using the specified format. \n\n##### Arguments\n\n| format | The markup format to use in the output. The possible values are \"text\" for plain text or \"html\" for HTML. |\n|--------|-----------------------------------------------------------------------------------------------------------|\n\n#### *string*\ninput\n(*string* message *string* initialValue, *string* title, *string* okTitle, *string* cancelTitle)\n\n\nDisplays a dialog that accepts input and returns it to the program. The dialog is\nmodal, so the program pauses until the user clicks one of the dialog's buttons.\n\n\nThe dialog contains two buttons, one of which displays the okTitle value\nand the other the cancelTitle value. If the user clicks the okTitle button,\nthe current value of the input box is returned. If the user clicks the cancelTitle\nbutton, an empty string is returned. \n\n##### Arguments\n\n| message | The prompt message displayed in the dialog. |\n| initialValue | The initial value to display in the dialog. The default is an empty string. |\n| title | The dialog's title. The default is \"Input\". |\n| okTitle | The text displayed in the okTitle button. The default is \"OK\". |\n| cancelTitle | The text displayed in the cancelTitle button. The default is \"Cancel\". |\n|--------------|-----------------------------------------------------------------------------|\n\n##### Returns\n\n- If the user clicks the okTitle button, then the method returns the current value of the dialog's input box. If the user clicks the cancelTitle button, the method returns an empty string. \n\n#### void\nsleep\n( *float* seconds )\n\n\nPauses the current program for the specified number of seconds. \n\n##### Arguments\n\n| seconds | The number of seconds to pause. |\n|---------|---------------------------------|\n\n#### `\n`[MonkeyDevice](/tools/help/MonkeyDevice)`\n`\nwaitForConnection\n(*float* timeout, *string* deviceId)\n\n\nTries to make a connection between the `monkeyrunner` backend and the\nspecified device or emulator. \n\n##### Arguments\n\n| timeout | The number of seconds to wait for a connection. The default is to wait forever. |\n| deviceId | A regular expression that specifies the serial number of the device or emulator. See the topic [Android Debug Bridge](/tools/help/adb) for a description of device and emulator serial numbers. |\n|----------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n\n##### Returns\n\n- A [MonkeyDevice](/tools/help/MonkeyDevice) instance for the device or emulator. Use this object to control and communicate with the device or emulator."]]