天天看點

java.lang.IllegalStateException: onMeasure() did not set the measured dimension by calling setMeasur

今天自定義Recycleview時,調用

adapter.notifyDataSetChanged();
           

報異常,異常資訊如下:

 java.lang.IllegalStateException: View with id 2131230785: com.example.smartcity.widget.viewpageRecycleview.PageRecyclerView#onMeasure() did not set the measured dimension by calling setMeasuredDimension()

java.lang.IllegalStateException: onMeasure() did not set the measured dimension by calling setMeasur

解決方法:在onMeasure()裡添加:setMeasuredDimension()

@Override
    protected void onMeasure(int widthSpec, int heightSpec) {
        setMeasuredDimension(widthSpec, heightSpec);
        super.onMeasure(widthSpec, heightSpec);
        shortestDistance = getMeasuredWidth() / 3;
    }
           

繼續閱讀