Can't find the cause “you must specify a way to create the tab indicator”

主宰稳场 提交于 2019-11-29 14:22:31

change last tab code as :

//Tab for Updates
    TabSpec u = tabHost.newTabSpec("Updates");
    u.setIndicator("Updates");
    Intent updatesIntent = new Intent(this, Updates.class);
    u.setContent(updatesIntent);

because you are not setting Indicator and Content for TabSpec u (you are setting for m Tab)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!