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()
findViewWithTag(String)「 MainActivity 型のメソッドは定義されていません」
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)