我需要找到当前由 FragmentActivity 显示的片段。
或者,我需要找到实现给定接口的片段。
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if (EditorInfo.IME_ACTION_DONE == actionId) {
// Return input text to fragment
AdjustPricesDialogListener fragment = (AdjustPricesDialogListener) ??? // how do I find this fragment?
我该如何做到这一点?