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.
调用时出现findViewWithTag()错误onCreate()
findViewWithTag()
onCreate()
“MainActivity 类型的方法findViewWithTag(String)未定义”
findViewWithTag(String)
有没有其他选择?
findViewWithTag()仅为视图定义。
如果您有对您设置的活动的 contentView 的引用,则setContentView(contentView)可以使用contentView.findViewWithTag().
setContentView(contentView)
contentView.findViewWithTag()
如果您没有对该视图的引用,您也可以使用findViewById(R.id.your_content_view_id).findViewWithTag(tag).
findViewById(R.id.your_content_view_id).findViewWithTag(tag)