Commit451 / ForegroundViews

Views that supports a foreground, like FrameLayout does
Apache License 2.0
213 stars 29 forks source link

remove onLayout method #11

Closed yueban closed 5 years ago

yueban commented 7 years ago

sometimes the methods would be called in order like this:

  1. onSizeChanged() ---> mForegroundBoundsChanged : true
  2. onLayout(true) ---> mForegroundBoundsChanged : true
  3. onLayout(false) ---> mForegroundBoundsChanged : false

so the foregroundBounds would be (0,0,0,0) after view created, and the foregroundDrawable would not be visible.