我通过执行以下操作动态地将选项卡添加到我的TabHost(‘tabs’):
TabSpec passSpec = tabs.newTabSpec("Pass Tab");
passSpec.setIndicator("Passengers",getResources().getDrawable(R.drawable.tab_message));
passSpec.setContent(new TabHost.TabContentFactory() {
public View createTabContent(String tag) {
View layout = mInflater.inflate(R.layout.tab_content_passengers,null);
return(layout);
}
});
tabs.addTab(passSpec);
这很好用……我遇到的问题是稍后更改该选项卡上的内容.有没有办法实现这一点,而不用全新的布局重新膨胀所有选项卡?
我正在尝试以下内容并且没有任何反应:
mInflater = LayoutInflater.from(this);
View layout = mInflater.inflate(R.layout.tab_content_passengers,null);
TextView t = (TextView) layout.findViewById(R.id.testText);
t.setText("Hello world??");
最佳答案
原文链接:https://www.f2er.com/android/430438.html