Have you tried activating the screen first?
I had same issue but activating the screen before clicking the object inside an image with NAF = TRUE worked for me.
I sent an enter key before I put the xpath for searching the element like this:
driver.pressKeyCode(66);
driver.findElementByXPath("//android.widget.TextView[@text = ‘your text’]").click();
note: 66 code means Enter key.