からビューの配列を取得することは可能onItemSelected()
ですか? 現在のビューのアニメーションを設定し、他のビューからアニメーションをクリアする必要があるため、可能ですか?
@Override
public void onItemSelected(AdapterView<?> adV, View view, int currentIndex, long l)
{
view.startAnimation(AnimationUtils.loadAnimation(currentContext, R.anim.scale_anim));
adV[currentIndex + 1].clearAnimation();
adV[currentIndex - 1].clearAnimation();
}