我准备了一个应用程序,我的应用程序包含一个选项卡布局。选项卡布局包含 6 个选项卡。我想为每个选项卡分配动画。为此,我使用了这行代码,
overridePendingTransition(R.anim.in, R.anim.out);
我的标签布局代码是,
TabSpec tabSpec = tabHost.newTabSpec(""+count);
View tabIndicator = LayoutInflater.from(this).inflate(R.layout.custom_tabs, getTabWidget(), false);
TextView title = (TextView) tabIndicator.findViewById(R.id.tv_Count);
title.setText(""+count);
tabSpec.setIndicator(tabIndicator);
Intent intent = new Intent(this, Utils.formsOfAPlan.get(count));
intent.putExtra("FORM_ID", count);
tabSpec.setContent(intent);
Utils.tabColors.put(count, Constants.NOT_SUBMITTED);
tabHost.addTab(tabSpec);
请指导我完成这个。