Posts by Paulo Gonçalves • 123 points
4 posts
-
1
votes1
answer97
viewsA: Error while listing Sqlite data
I solved my problem by specifying the size of Arraylist; List<AgendaDia> agendaRegistros = new ArrayList<>(cursor.getCount());…
-
0
votes1
answer39
viewsA: How to take the images that are returning and turn into a gallery?
I don’t know if I understand your problem, because your question got a little confused But take a look at the documentation of the plugin that is using lightbox. Depending on which one you’re using,…
-
0
votes1
answer81
viewsA: Save Dynamic Fields in Meta Box in Wordpress
Instead of numbering links inputs, you can use name="links[]" So you will receive an array in the POST, Then you can save this array to a single post meta using implode() or even json_encode(). When…
-
1
votes1
answer97
viewsQ: Error while listing Sqlite data
I am making a listing of the information contained in my Sqlite database However, sometimes or other, I get the following error: java.lang.Arrayindexoutofboundsexception: length=13; index=1401 The…