我正在开发 android 标签应用程序,我想务实地更改标签栏内容,在我的标签栏中有一个ImageView
和一个TextView
我需要更改Imageview
图像和TextView
文本。
View tab = tabHost.getTabWidget().getChildTabViewAt(1);
TextView tv = (TextView) tab.findViewById(android.R.id.orders_label);
此代码也不起作用..!
我正在开发 android 标签应用程序,我想务实地更改标签栏内容,在我的标签栏中有一个ImageView
和一个TextView
我需要更改Imageview
图像和TextView
文本。
View tab = tabHost.getTabWidget().getChildTabViewAt(1);
TextView tv = (TextView) tab.findViewById(android.R.id.orders_label);
此代码也不起作用..!
您可以使用以下代码进行更改
TextView title = (TextView )tabGroup.getChildAt(0).findViewById(R.id.tv);
title.setText("Your text");
ImageView tabImage = (ImageView )tabHost.getTabWidget().getChildAt(1).findViewById(R.id.ordericon);
TextView tabText = (TextView )tabHost.getTabWidget().getChildAt(1).findViewById(R.id.orders_label);