0

我有一个 ACTV,用于显示地理建议(通过 GeoCoder 等)。它就像魅力一样工作。

现在我想强制 ACTV 显示历史 - 以前找到的地理位置 - 当用户触摸空的 ACTV 或文本大小减小到 0 时作为下拉菜单显示。在这种情况下,ACTV 应该像一个简单的微调器一样工作。当用户更改文本时,ACTV 应该启动地理编码搜索。

实现这一目标的最简单方法是什么?

TIA

4

1 回答 1

1

You could add an OnTouchListener on the AutoCompleteTextView, invoking:

autoCompleteTextView.showDropDown();

For focus, you could do something similar using an OnFocusChangeListener, but first check that the popup isn't already showing through isPopupShowing().

于 2014-01-22T15:17:12.910 回答