Posts by Anderson Scherdovski • 85 points
11 posts
-
-2
votes1
answer280
viewsQ: Check the app version on Google play
Is there a Web Service that returns the version of my application? Because for example I have version 1.2 (most current) and when the user opens and for example it is version 1.1 do not let him run…
-
1
votes1
answer53
viewsQ: How to filter to show only required fields in a class using Gson
I’m using Gson to work with json, let’s say I have this class class Track( @SerializedName("id") val id: Long, @SerializedName("name") val name: String, @SerializedName("modality") val modality:…
-
0
votes0
answers79
viewsQ: Android Recyclerview cache
I have a recyrcleview on most devices worked well, but on some devices version 7, it’s a bit buggy, it’s kind of cached with the first elements. Does anyone have any idea? example of normal working…
-
-1
votes1
answer501
viewsQ: Ondestroy android studio
Whenever gave an error in android code should not call onDestroy? For what I have seen here it calls onDestroy only when it is used when using Finish().. correct? In case an error occurs wanted to…
androidasked Anderson Scherdovski 85 -
1
votes1
answer101
viewsQ: Share android html file
I want to share a HTML in file form, and not just text. First I would need to generate a file to then send? Intent sharingIntent = new Intent(Intent.ACTION_SEND); sharingIntent.setType("text/html");…
androidasked Anderson Scherdovski 85 -
1
votes1
answer480
viewsQ: Browse Jsonobject Android
How to go through an Object array in the way q I can get the data? {"number1":"value1", "number2":"value2", "number3":"value3"} for (int c = 0; c < jsonObject.length(); c++) { }…
androidasked Anderson Scherdovski 85 -
0
votes1
answer71
viewsQ: Recyclerview Android
I wanted to make imageButton appear if item.getImprimir() == true. It seems to work ok but if scrolling Recyclerview down starts to appear problems, it starts to appear right where…
-
2
votes3
answers529
viewsQ: Turn Jsonobject into Jsonarray
How do I get the data from this Json? I want to turn it into a Jsonarray to go through, but it’s a Jsonobject... { "1":{"a":"1","c":"0","d":"0","m":"0","ns":"0","proc":"0"},…
-
0
votes1
answer39
viewsQ: Recyrcleview Android
In my case I will need to put several buttons in a recyrcleview has to recognize on which button was clicked or only the position of an item in the list? <TableRow android:id="@+id/tableRow1"…
-
2
votes1
answer38
viewsQ: Httpurlconnection Android + Msyql
The Code works perfectly more I need it without using Asynctask because I call several times in my code every time I finish running(onPostExecute) I call different methods or functions... I need…
-
0
votes0
answers218
viewsQ: Ionic official synchronization
Good Afternoon to you... I need to develop an Ionic app that is offline (pouchDB) and when I had local network connection in my case (wifi) make the integration with the server that in my case would…