Posts by Francisco Júnior • 91 points
5 posts
-
1
votes2
answers1364
viewsA: Sqlite error on Android : error code 11: database disk image is malformed
A few months ago we started receiving many reports from users complaining of failures in one of our applications. During the investigation of the problem, it became clear that the error was due to…
-
0
votes1
answer307
viewsA: Why is Activity instantiated twice?
There’s a great chance the callback onSessionStateChange is being called more than once with the same state. There are scenarios where this can happen such as the point at which you are making your…
-
1
votes3
answers2371
viewsA: Create a button in a Listview
There is more than one way to solve this problem, including through fragments. This form below is one of the simplest and I believe will suit you. Through the attribute…
-
0
votes3
answers1353
viewsA: Architecture for a JSF Application with Android APP
An alternative to the use of Jersey is the Spring MVC, which besides an excellent implementation of features for API’s Rest, has several other features to compose its solution among them packages…
-
1
votes2
answers1222
viewsA: How to pass the application context to the Adapter by reading Json using Asynctask?
I suggest some changes. First, the reason: Operations related to the Android UI cannot be done in the InBackground method, as it does not run in the Main Thread. UI operations can only be performed…