在我建立的应用程序中,有一个列表视图,实际上是一个带子系统的可扩展列表视图 - 并且两个案例取决于所点击的grouplistitem:有时候有一个sublistitem,有时有两个子列表项。当单击包含ONE子列表项的组视图时,将激活FrameAnimation。并且因为在启动此动画之前必须完成每个视图,所以我必须实现一个侦听器,实际上是OnGlobalLayoutListener()。在onGlobalLayout方法中,我删除了这个监听器。到现在为止还挺好。
但问题是什么呢?问题是,如果我滚动这个包含framanimation的子视图项并且向后滚动 - 然后点击另一个grouplistitem,这次包含两个子项,frameanimation将应用于其中一个子列表项。换句话说 - 聆听者没有被杀,它活着!!!!为什么呢?
我已尝试在CASE 2中删除此侦听器但我现在无法使用指针此
任何解释为什么这个听众仍然活着并且想要移除它?
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;
}
答案 0 :(得分:3)
我也遇到类似的问题,它也是关于扩展listview。 我构建了一个适配器,显示带动画的列表项和支持滚动视图的显示。 但是,我在计算扩展viewGroup的高度时遇到问题。 即使在重写的OnDraw()OnLayout()中,展开viewGroup的高度始终为0。
最后,我使用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);
}
}
仍在寻找一种方法将其删除....
修改强> 刚发现可能的原因。在我的例子中,当展开其他listview项时,也会触发onLayoutListener。这可能是由于扩展了一个listview项目而导致其他项目重新布局,并因此触发了onLayoutListener。
实际上,在我的情况下删除了onLayoutListener。