Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的代码中,如果用户在 EditText 中输入字符串,我将尝试显示 5 个建议地址的列表。
我用
List<Address> addressList = geocoder.getFromLocationName(searchString, 5);
searchString 是用户在 EditText 中输入的字符串。然而,结果总是 1 而不是 5。我尝试了许多城市/地名,但它只向我显示一个建议。
我想得到的不仅仅是一个结果。我可以得到帮助吗?