10-08 10:23:40.433: E/MoreInfoHPW_ViewGroup(10127): Parent view is not a TextView

前端 未结 1 605
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-24 02:00

Hi In don\'t understand why I get this error: 10-08 10:23:40.433: E/MoreInfoHPW_ViewGroup(10127): Parent view is not a TextView Any help would be appreciated.

L         


        
相关标签:
1条回答
  • 2021-01-24 02:34

    The second argument to the LayoutInflater seems really weird.

    (ViewGroup) findViewById(R.id.layout_pass) is a reference to a id within the layout that is to be inflated but the argument is used to pass a root layout to the inflated object. Try just passing null as second argument.

    Please see the documentation for the LayoutInflater

    0 讨论(0)
提交回复
热议问题