当我在findViewWithTag()中调用onCreate()时出错
“方法findViewWithTag(String)未定义为类型
主要活动”
还有别的选择吗?

最佳答案

findViewWithTag()仅为视图定义。
如果您有对用setContentView(contentView)设置的活动的contentview的引用,则可以使用contentView.findViewWithTag()
如果没有对该视图的引用,也可以使用findViewById(R.id.your_content_view_id).findViewWithTag(tag)

07-27 16:05