AndroidDeveloperLB
AndroidDeveloperLB
I think it's enough to just check if the number of functions in the interface is just one, not sure.
Meaning: `view.setVisibility = View.VISIBLE` -> `view.isVisible = true` `view.setVisibility = View.GONE` -> `view.isVisible = false` `view.setVisibility = View.INVISIBLE` -> `view.isInvisible = true` And also the getter: `if(view.visibility==View.VISIBLE)` -> `if(view.isVisible)` `if(view.visibility==View.GONE)`...
Currently we have "Kotlin Interoperability" inspection to show which Java files need to have @Nullable/@NonNull annotations. It shows under : Unknown nullness, Android->Interoperability->Kotlin Interoperability->Unknown nullness The message is: > explicitly...
First I got this error:  so I've updated many things and dependencies, but now I get this error:  How come? How can I overcome those?
Sadly on Android R, you can't set a custom View for a Toast (when targeting API 31) : https://developer.android.com/reference/android/widget/Toast#setView(android.view.View) https://developer.android.com/reference/android/widget/Toast#getView() Please offer something that mimics the standard Toast's look&feel, so...
The one that pops-up next to the draggable scroller, to show what is the character that we've reached...
Or at least not Hebrew: [Carnac_2024-01-15_01-43-08.zip](https://github.com/bfritscher/carnac/files/13933478/Carnac_2024-01-15_01-43-08.zip) This is the version I've used: https://github.com/bfritscher/carnac/releases/tag/v3.1-beta
I get this: 
When I use dividerWidth , I expect it to work only between items, and not on the edges. Please fix it. If I would want to add dividers on the...
This is what I see when I click on the right button, that has HTML5 logo: 