Posts by Louix Dev • 63 points
2 posts
-
6
votes1
answer68
viewsQ: Are Java enumerations anti-performance?
In a project I thought of exchanging whole ones for enumbut a colleague told me that enums are anti performatic.
-
0
votes1
answer61
viewsA: How to know List Size? ANDROID KOTLIN
You can simply pull the list from your Adapter for this. Ex.: val listaTarefas = movimentacaoAdapter2.mRetornaItens val SizeLits.text = "Total de tarefas pensentes : ${listaTarefas.size()}" This is…