Android之ListView超过正常次数反复调用getView和getCount问题

参考 http://hi.baidu.com/blogofivan/item/e5f8c2a13a0ec7d35af1917c

               在自定义Dialog时,布局有ListView,发现Adapter的getView被调用次数超过正常次数。发现时setContentView方法的顺序导致。根本原因应该是ListView自适应时需要根据Item的宽高来计算它的宽高。

               所以

@Override
protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);
setCanceledOnTouchOutside(false);//点击对话框外禁止取消窗口

setContentView(view);//放在设定窗口宽高之后


LayoutParams params = getWindow().getAttributes();
params.width = UIHelper.dip2px(getContext(), 400);
params.height = UIHelper.dip2px(getContext(), 600);
params.windowAnimations = R.style.popupAnimation;
getWindow().setAttributes(
(android.view.WindowManager.LayoutParams) params);

getWindow().setGravity(Gravity.CENTER_HORIZONTAL|Gravity.CENTER_VERTICAL);

//setContentView(view);  //不能放在设定窗口宽高之后,否则会超过正常次数反复调用getView和getCount问题


  }

你可能感兴趣的:(Android之ListView超过正常次数反复调用getView和getCount问题)