You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The background features are being drawn directly on the native parent(RelativeLayout), as the Box isn't actually the Selection's parent at the native level: both of them are direct children of the RelativeLayout.
The text was updated successfully, but these errors were encountered:
In summary, we wrapped these widgets in an extra native RelativeLayout on which these features could be drawn. This fixed the issue for widgets with their own background colors, at the cost of causing the ripple effects to be clipped by the wrapper. We accepted this because most of these widgets didn't previously support background colors at all.
But for transparent backgrounds, which are the most common case, clipping the ripple would be a regression. So we implemented transparent backgrounds by setting the wrapper's background to null, which leaves open the possibility that some features might be hidden entirely by the background of a containing Box.
The only other approach I can think of is to actually reproduce the Toga box hierarchy at the native level, rather than making all widgets direct children of the top-level Container.
Originally posted in #3118 by @proneon267
if I have:
Then the animation effect on interaction would look like:
But now, if I set a background color on the parent like:
Then the animation effect on interaction would look like:
As we can see, the dropdown arrow is not visible, and the ripple effect is also not visible.
The same problem exists in other widgets also(like
toga.Switch
, etc.), where the ripple effect will not be visible:I experimented with semi-transparent backgrounds:
The background features are being drawn directly on the native parent(RelativeLayout), as the Box isn't actually the Selection's parent at the native level: both of them are direct children of the RelativeLayout.
The text was updated successfully, but these errors were encountered: