Posts by Arthur Rodrigues • 57 points
3 posts
-
0
votes2
answers455
viewsQ: getView() method is not called in the Array Adapter
I am developing an android app and I am facing the following problem, I created an Adapter to fill my Listview but fills only the header and not be entering the getView() method to fill the items in…
-
4
votes2
answers1261
viewsQ: Compare value at each String position in Java?
I’m having trouble comparing a value in each position of a String, follows the example below: parametro = "30,60,90"; private int countVirgulas(String parametro) { int count = 0; for (int i = 0; i…
-
1
votes1
answer127
viewsQ: Code displaying decimal value in C# for Java/Android
I have a code that rounds up a value like decimal for homes I want, and would like to implement it on Android in Java however I’m having some difficulties, follows below the code in C#. public…