final Animation anim_halt= AnimationUtils.loadAnimation(this, R.anim.anim_11);
spinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {

@Override
public void onItemSelected(AdapterView<?> arg0, View arg1,
int arg2, long arg3) {
// TODO Auto-generated method stub
switch (arg2) {
case 0:
mTxtPlayWord.setAnimation(anim_11);
break;
.
.
.
.
-------------------------------------------------------
anim_11.xml
<?xml version="1.0" encoding="UTF-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate android:fromXDelta="+120%p" android:toXDelta="-1000%p"
android:duration="5000" android:repeatCount="9999999" />
-------------------------------------------------------
checkBtn.setOnCheckedChangeListener(new OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
// TODO Auto-generated method stub
if (isChecked){
AlphaAnimation ani1 = new AlphaAnimation(0, 1); //fade-in
ani1.setDuration(500);
ani1.setRepeatCount(999999999);
mTxtPlayWord.setAnimation(ani1);
mTxtPlayWord.startAnimation(ani1);

위와 같이 했을때 spinner의 0번째가 선택 & checkbox가 체크 => 둘이 구동이 되야 정상아닌가요?
실제 구동은 체크박스의 이벤트는 무시되버리네요...
spinner안에서는 xml을 불러오는 에니메이션이고
체크박스안의 에니메이션은 소스상으로 구현한것인데...
체크박스를 마구 눌러보면 단일 구동되지만 spinner안의 이벤트는 또 무시되네요...;