私は1つのアプリケーションを準備しました.私のアプリには1つのタブレイアウトが含まれています.タブレイアウトには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);
これを乗り越えるために私を導いてください。