AndroidDeveloperLB

Results 538 issues of AndroidDeveloperLB

This is to avoid some inspections that require much more work than just replacing with short text, such as here: https://github.com/Miha-x64/Mikes_IDEA_extensions/issues/20

Often when I convert from Java to Kotlin, I see something like this: ``` foo((value as Boolean?)!!) ``` Instead, it should be like this: ``` foo(value as Boolean) ``` If...

I think it's enough to just check if the number of functions in the interface is just one, not sure.

enhancement
wontfix

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)`...

enhancement

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...

enhancement
wontfix

First I got this error: ![image](https://user-images.githubusercontent.com/5357526/31665581-f95b0bde-b351-11e7-96c0-e1ce6fb0321e.png) so I've updated many things and dependencies, but now I get this error: ![image](https://user-images.githubusercontent.com/5357526/31665514-ba249746-b351-11e7-9040-0fb149d32c05.png) 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: ![image](https://user-images.githubusercontent.com/5357526/37156379-a0f3de64-22ee-11e8-96cf-45a987626f32.png)