Todd-Davies / ProgressWheel

A progress wheel for android, intended for use instead of the standard progress bar.
MIT License
2.64k stars 710 forks source link

Respect wrap_content and match_parent settings. #31

Closed golharam closed 10 years ago

golharam commented 10 years ago

getLayoutParams().width() and getLayoutParams.height() return -1 and -2 for match_parent and wrap_content, which are constants. Instead use getWidth() and getHeight(). onMeasure changes are to keep the progress wheel square.