2014-04-28 53 views
0

空的圖片我有一個ImageSwitcher:安卓:在ImageSwitcher

XML:

<ImageSwitcher 
      android:id="@+id/is" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:animateLayoutChanges="true" > 
     </ImageSwitcher> 

代碼:

is.setFactory(new ViewFactory() { 

     @Override 
     public View makeView() { 
      // TODO Auto-generated method stub 
      iv = new ImageView(getApplicationContext()); 
      iv.setScaleType(ImageView.ScaleType.FIT_CENTER); 
      iv.setLayoutParams(new ImageSwitcher.LayoutParams(LayoutParams.MATCH_PARENT,LayoutParams.MATCH_PARENT)); 
      return iv; 
     } 
    }); 

而在我的OnClick我的照片之間切換,如果有一些。 如果我添加了圖片然後點擊,它會在一些圖片之間始終顯示一張「空/黑」圖片。 我有一個動畫:

Animation in = AnimationUtils.loadAnimation(this,R.anim.infromleft); 
    Animation out = AnimationUtils.loadAnimation(this,R.anim.outtoright); 

但沒有更多。你知道ImageSwitcher中是否有這樣的「空/黑」圖片?

回答

0

我解決了這個問題:android:animateLayoutChanges =「true」引發了這個問題。只要刪除它;)