Android FragmentTabHost : No tab known for tag null

前端 未结 7 459
悲&欢浪女
悲&欢浪女 2020-12-09 01:16

I used below code and it is not render graphical layout. display error as Exception raised during rendering: No tab known for tag null.

how can i solve

7条回答
  •  离开以前
    2020-12-09 01:40

    This problem occurs when you try to setup your FragmentTabHost in onViewCreated, which is too late. Try to setup it in onCreateView, and add at least one tab before returning the view object.

提交回复
热议问题