Can not locate an element using UIautomator/Appium, says "No such elements found using the given parameters"

Hey, tried several ways to find my element, error still shows up.

  1. From the below list , tried all locator strategy, but no help.

#elu = driver.find_element_by_xpath("//*[contains(@text, ‘Baddebt Collection’)]")
#elu.click()

elv = driver.find_element_by_xpath(’//android.widget.TextView[@text= “Baddebt Collection”]’)
elv.click()

#elk = driver.find_element_by_name(“Baddebt Collection”)
#elk.click()

#el78 = driver.find_element_by_id(“com.ambs.mobile:id/txtValue_Spinner”)
#el78.click()

#elb = driver.find_element_by_xpath("//*[@name=‘Baddebt Collection’]")
#elb.click()

all the other fields mentioned in the screenshot were located apart the mentioned field, but however i can not track this field only, any help?