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.
我创建了一个带有一个编辑文本和一个微调器的 android xml 文件。如果我在编辑文本中输入一些输入,即 countryid,则该 ID 的国家/地区会显示在微调器中。如果我从微调器中选择国家,那么国家 ID 会显示在编辑文本中。请帮助我。
这其实是一个循环依赖editext<->spinner
所以为了做到这一点,你必须TextWatcher在android中实现接口,这样每当editext内的数据发生变化时,它就会触发你在实现TextWatcher接口时可以看到的方法。
TextWatcher
对于微调器,我建议在setOnItemSelectedListener微调器的侦听器中进行更改文本工作。
setOnItemSelectedListener
我希望它有帮助