如何通过android命名空间的ID访问View
在层次结构查看器中,有多个 ID,如上所示,例如“id/timepicker_input”。 但我在输入时找不到相应的 timepicker_input - ID
myNumberPicker.findViewById(android.R.id. ...? );
那么如何通过 ID 访问这些视图呢?
In hierarchy viewer there are several IDs as shown above, for example "id/timepicker_input".
But I can't find a respective timepicker_input - ID when typing
myNumberPicker.findViewById(android.R.id. ...? );
So how to access these Views by their ID?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保没有定义
import android.R...
并在更改布局后构建您的项目。Make shure there is no
import android.R...
defined and build your project after altering your layouts.