程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-從 AdapterView 中創建數組

android-從 AdapterView 中創建數組

編輯:編程綜合問答
從 AdapterView 中創建數組

能否從onItemSelected()中獲取views數組?因為我需要給當前的視圖設置動畫,並且清除其它視圖的動畫,能這樣做嗎?

 @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();

        }

最佳回答:


你應該遍歷 AdapterView 的子類

int count = adV.getChildCount();
for (int i = 0; i < count; i++) {
    View v = adV.getChildAt(i);
    view.clearAnimation();
}

當然你要檢查 view 是否是當前的。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved