3

在此处输入图像描述在我构建的应用程序中,有一个列表视图,实际上是一个带有子列表的可扩展列表视图 -根据单击的组列表项,有两种情况:有时有一个子列表项,有时有两个子列表项并且当单击包含一个子列表项的组视图时,会激活 FrameAnimation。而且因为每个视图都必须在这个动画开始之前完成,所以我必须实现一个监听器,实际上是 OnGlobalLayoutListener()。在 onGlobalLayout 方法中,我删除了这个监听器。到目前为止,一切都很好。

但那有什么问题呢?问题是,如果我将包含框架动画的这个子列表项滚动到视图之外并向后滚动 - 然后单击另一个组列表项,这次包含两个子项,框架动画将应用于其中一个子列表项。换句话说 - 侦听器没有被杀死,它还活着!!!!为什么?

我曾尝试在案例 2 中删除此侦听器,但我现在无法使用指针this

有什么解释为什么这个听众还活着并且想要删除它?

public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent) {
      final ViewHolder holder;

      if (convertView == null) {
          LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
          convertView = inflater.inflate(R.layout.activity_subphrase, parent, false);
          holder = new ViewHolder();
          holder.text = (TextView) convertView.findViewById(R.id.label_single);
          holder.text2 = (TextView) convertView.findViewById(R.id.label_couple);
          holder.imageView = (ImageView) convertView.findViewById(R.id.single);
          holder.imageView2 = (ImageView) convertView.findViewById(R.id.couple);
          convertView.setTag(holder);

      } else {  
          holder = (ViewHolder) convertView.getTag();
      }
      final int nChildren = getChildrenCount(groupPosition);


      final View v = convertView;
      switch (nChildren) {
        case 1:
            holder.imageView.setBackgroundResource(0);
            holder.imageView2.bringToFront();
            holder.text.setText(null);
            holder.text2.setText(contents[groupPosition][childPosition]);
            holder.imageView2.setBackgroundResource(R.drawable.man_woman_3);
            //extra(groupPosition, category, holder.text, convertView, parent);
            showThaiImages(groupPosition, holder.text, convertView, parent);
            // Väntar till all layout är avklarad - efter detta bearbetas animering. 

            vto = convertView.getViewTreeObserver();
            vto.addOnGlobalLayoutListener(new OnGlobalLayoutListener() { 
            public void onGlobalLayout() {
                v.getViewTreeObserver().removeOnGlobalLayoutListener(this);  //vet inte om denna metod är nödvändig
                holder.imageView2.bringToFront();
                holder.imageView2.setBackgroundResource(R.drawable.animation3);
                frameAnimation = (AnimationDrawable) holder.imageView2.getBackground();
                frameAnimation.start();
            }}); 
            break;

        case 2:


            try {
                System.out.println("ViewTreeObserver is alive = : " + vto.isAlive());
            } catch (Exception e) {
                e.printStackTrace();
            }
            v.getViewTreeObserver().removeOnGlobalLayoutListener(this);
            holder.imageView2.setBackgroundResource(0);
            holder.imageView.bringToFront();
            holder.text2.setText(null);
            //holder.imageView.invalidate();
            holder.text.setText(contents[groupPosition][childPosition]);
            switch (childPosition) { // Switch-villkor för man eller kvinna. 
                case 0: // Man.
                    holder.imageView.setBackgroundResource(R.drawable.man_3);
                    break;
                case 1: // Kvinna.
                    holder.imageView.setBackgroundResource(R.drawable.woman_3);
                    break;
            }
            break;
      }

      notifyDataSetChanged();
      return convertView;
  }
4

1 回答 1

4

我也遇到了类似的问题,这也是关于扩展列表视图。我构建了一个适配器,它显示带有动画的列表项并支持滚动视图显示。但是,我在计算展开 viewGroup 的高度时遇到问题。展开 viewGroup 的高度始终为 0,即使在重写的 OnDraw() OnLayout() 中也是如此。

最后,我使用 OnGlobalLayoutListener 来检测何时更改高度。此外,OnGlobalLayoutListener 永远不会被删除,并且不知何故,越来越多的 OnGlobalLayoutListener 堆叠在同一个视图上。

我考虑过不推荐使用的函数阻止侦听器被删除。但是在将其更改为以下内容后我没有帮助:

@SuppressLint("NewApi")
public static void removeOnGlobalLayoutListener(View v,
        ViewTreeObserver.OnGlobalLayoutListener listener) {
    if (Build.VERSION.SDK_INT < 16) {
        v.getViewTreeObserver().removeGlobalOnLayoutListener(listener);
    } else {
        v.getViewTreeObserver().removeOnGlobalLayoutListener(listener);
    }
}

还在寻找去除的方法......

编辑: 刚刚找到一个可能的原因。就我而言,展开其他列表视图项时也会触发 onLayoutListener 。这可能是由于一个listview项的展开使其他项重新布局,并因此触发onLayoutListener。

实际上,在我的情况下, onLayoutListener 已被删除。

于 2013-10-02T08:30:15.427 回答