Issue with displaying TabHost Layout in new Intent

后端 未结 9 2051
悲哀的现实
悲哀的现实 2021-01-20 21:05

I am having an issue with using TabHost in a new Intent of type TabActivity which I hope you can point me in the right direction. Funnily it works fine when I try to view it

9条回答
  •  太阳男子
    2021-01-20 21:44

    I had copied and pasted code and noticed that in the id attribute I had:

    android:id="@+id/tabs" 
    

    when what I really wanted was:

    android:id="@android:id/tabs"
    

提交回复
热议问题