如何将焦点从文本的点击事件转移到 googleplaces 自动完成输入?

How to get focus from click event of a text to googleplaces autocomplete input?

我正在尝试开发一个应用程序,需要您的帮助。所以我使用 react native googleautoplaces complete 作为位置,显示在第一个文本输入中。

加载后的页面根据我使用的地理编码器获取当前位置。

我需要的是,当我点击 'change' link 时,它应该聚焦或 select 位置输入。page design,code for google autocomplete,code2.

如果我使用 ref,我可以那样做吗?如果是,如何添加多个引用,因为自动完成中已经使用了另一个引用。ref method used inside autocomplete, which takes the address value.

<GooglePlacesAutocomplete 
...
ref={(ref) => { this.ref_location = ref }

//your element where the "Change" is being pressed. I used a button just as an example

<Button
    title="Change"
    onPress={() => { this.ref_location.focus(); }}
/>