如何在Android应用程序中创建自定义标签

如何在Android应用程序中创建自定义标签,第1张

概述谢谢提前..当我在android应用程序中创建自定义标签时,主屏幕上没有显示任何标签如何解决这个问题,请任何人告诉我?解决方法:您的意思是您要为应用程序创建自定义选项卡.确定,现在有了两个类,分别是homemyclass.java和myclass.java.首先,您在homemyclass.java中声明流两行private

谢谢提前..

当我在android应用程序中创建自定义标签时,主屏幕上没有显示任何标签

如何解决这个问题,请任何人告诉我?

解决方法:

您的意思是您要为应用程序创建自定义选项卡.确定,现在有了两个类,分别是homemyclass.java和myclass.java.首先,您在homemyclass.java中声明流两行

private Intent mytab;private static final String TAB_MYCLASS = "myclass";

然后将流线写入homemyclass.java的onCreate()函数中

mytab = new Intent(this, myclass.class);addTab(TAB_MYCLASS, getString(R.string."label for tab"), R.drawable."icon for tab display when tab is  selected",   R.drawable."icon for tab display when tab is not selected", mytab);

只需将addTab()添加到homemyclass.java中

private voID addTab(String tag, String label, int icon, int ficon, Intent content) {    TabHost tabHost = getTabHost();    TabSpec tabspecDialer = tabHost.newTabSpec(tag).setContent(content);    //boolean fails = true;        tabspecDialer.setIndicator(label, getResources().getDrawable(icon));    tabHost.addTab(tabspecDialer);}

您还需要通过homemyclass.java和myclass.java修改androIDManifest.xml

总结

以上是内存溢出为你收集整理的如何在Android应用程序中创建自定义标签全部内容,希望文章能够帮你解决如何在Android应用程序中创建自定义标签所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1071220.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存