标签布局的动画?

时间:2012-12-11 13:22:16

标签: android animation android-tabhost

我准备了一个应用程序,我的应用程序包含一个选项卡布局.Tab布局包含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);

请指导我过来。

0 个答案:

没有答案