Bug 1243307 - Post: clarify where onPromptFinished is run r=liuche

This commit is contained in:
Andrzej Hunt 2016-02-01 15:37:47 -08:00
parent a36a5f8483
commit 3b44ba8f8c

View File

@ -546,6 +546,11 @@ public class Prompt implements OnClickListener, OnCancelListener, OnItemClickLis
}
public interface PromptCallback {
/**
* Called when the Prompt has been completed (i.e. when the user has selected an item or action in the Prompt).
* This callback is run on the UI thread.
*/
public void onPromptFinished(String jsonResult);
}
}