Can not locate XPath on Andriod

Can you help me please to locate Xpath of element. I Need to get text from from that Xpath. I was trying different combinations, but still no luck((. And resource-id I can not use because because for RelativeLayout[0] and RelativeLayout[1] they the same. And I can not look for text as well, because text is dynamic (DVR boxes will change). I think only solution is XPath
What I did:
1.AndroidElement d = (AndroidElement) driver.findElementByXPath("//android.widget.RelativeLayout[0]/android.widget.RelativeLayout[0]/android.widget.TextView[0]");
2. AndroidElement d = (AndroidElement) driver.findElementByXPath("//android.widget.RelativeLayout[@index=‘0’]");
System.out.println(d.getText());