Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Android: setting background_color on a box can hide some of its child widgets' UI #3235

Open
mhsmith opened this issue Mar 3, 2025 · 1 comment
Labels
android The issue relates to Android mobile support. bug A crash or error in behavior.

Comments

@mhsmith
Copy link
Member

mhsmith commented Mar 3, 2025

Originally posted in #3118 by @proneon267


if I have:

toga.Box(
            style=Pack(flex=1),
            children=[
                toga.Selection(
                    items=["Alice", "Bob", "Charlie"],
                )
            ],
        )

Then the animation effect on interaction would look like:

But now, if I set a background color on the parent like:

toga.Box(
            style=Pack(flex=1, background_color="#87CEFA"),
            children=[
                toga.Selection(
                    items=["Alice", "Bob", "Charlie"],
                )
            ],
        )

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:

 toga.Box(
            style=Pack(flex=1, background_color=rgba(135, 206, 250, 0.5)),
            children=[
                toga.Selection(
                    items=["Alice", "Bob", "Charlie"],
                )
            ],
        )

Screenshot 2025-01-23 001225

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.

@mhsmith mhsmith added android The issue relates to Android mobile support. bug A crash or error in behavior. labels Mar 3, 2025
@mhsmith
Copy link
Member Author

mhsmith commented Mar 3, 2025

Previous discussion: #3118 (comment)

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
android The issue relates to Android mobile support. bug A crash or error in behavior.
Projects
None yet
Development

No branches or pull requests

1 participant