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
I am experiencing an issue where none of the click listeners (e.g., for Button, TextView, etc.) in my application are functioning as expected. I suspect this may be caused by the SDK potentially interfering with or controlling certain parts of the view hierarchy, as I am following the provided code samples.
Could the SDK be intercepting or affecting touch events in a way that prevents click events from being propagated to child views? If so, are there any recommendations or adjustments I can make to ensure that click listeners work correctly across all views in my app?
Any insights or suggestions would be greatly appreciated!
The text was updated successfully, but these errors were encountered:
I think the likelihood of MSDK V5 affecting the view layer is quite low.
If MSDK V5 were to cause interference, the sample code should have special handling for the view, but it appears that it does not.
Does your application run normally after removing MSDK V5? Which version?
When removing the SDK (the tried versions 5.8.0 and 5.10.0), my application works fine. However, when using 5.10.0, button clicks require additional logic, such as adding an OnTouchListener to handle touch events before the OnClickListener works properly:
binding.btnOpen.setOnTouchListener { ... }
This issue affects all child views as well. It seems like the MSDK or the UXSDK might be interfering with event propagation.
Is your project using the uxsdk library? If so, you can consider removing the UXSDK library first. The UXSDK library uses kotlin-android-extensions, not ViewBinding.
I am experiencing an issue where none of the click listeners (e.g., for Button, TextView, etc.) in my application are functioning as expected. I suspect this may be caused by the SDK potentially interfering with or controlling certain parts of the view hierarchy, as I am following the provided code samples.
Could the SDK be intercepting or affecting touch events in a way that prevents click events from being propagated to child views? If so, are there any recommendations or adjustments I can make to ensure that click listeners work correctly across all views in my app?
Any insights or suggestions would be greatly appreciated!
The text was updated successfully, but these errors were encountered: