All Questions
9 questions
5
votes
1
answer
334
views
Parse and format date
I have the following code for taking a date in the form of a string yyyy-MM-dd HH:mm:ss (UTC timezone) and turning it into ...
5
votes
2
answers
3k
views
Java/Kotlin JSON parsing improvement
I consume an API which gives me this type of JSON:
...
4
votes
1
answer
372
views
Android XML parser to parse themes
I used XML to control the theme of an InputMethod for Android. A theme in XML contains the color and the shape of keys.
XML file
...
2
votes
2
answers
4k
views
Parsing a text file of node data into Nodes and Edges
I'm a fairly new developer (well, engineer really, but currently working on a software project). In the Android project I'm working on, I read a node representation of a map into my app and interpret ...
1
vote
1
answer
465
views
Parsing a file for an Android device
I am trying to parse InputEvents of an Android device.
Background:
For an android device we have a utility getevent ...
4
votes
2
answers
241
views
How can I speed up my RSS feed Android App?
I have a problem with parsing RSS from a PHP page because the app is too slow.
This is my parsing code:
...
3
votes
4
answers
11k
views
Android AsyncTask, HTTP Request and Parsing
I am working on Android applications for last 2 years and about 80% applications I have developed involve web-services consumption followed by some sort of XML or JSON parsing. Initially, when I had ...
4
votes
1
answer
10k
views
Simplifying HTML parsing
I'm working on an app for my school (not homework, an app that's going to be used by students), that's supposed to display our week schedules. I get the data from a webapp, but it has no API that I ...
8
votes
1
answer
27k
views
Optimize JSON insertion to SQLite (insert ... on duplicate key ignore)
In current task, I'm refactoring the code of converting JSON file into SQLite database on Android device. Code compliant with Java 6.
As a benchmark, grabbing the code from remote server takes ...