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.
我想编写一个类,用作具有相同 API 的驱动程序/连接器。但并非在每个请求中我都会收到相同的数据。
所以最好的解决方案是在这个类事件中创建
onVariableOneNameChangeListener(String variableOne)
并将其附加到布局元素中的任何元素(EditText、TextView 等)。
那么如何构建具有通用附加事件的类呢?
不确定你的意思。您想要一个可以响应任何视图上的任何事件的侦听器吗?这可能是不可能的,因为每个事件侦听器都有自己的签名。你能详细说明用例吗?