Posts by Fabio Calefi • 191 points
5 posts
-
0
votes2
answers973
viewsA: Enable Proguard on Android app
Original code : package com.example.sqlcipher_exemplo; import java.io.File; import net.sqlcipher.Cursor; import net.sqlcipher.database.SQLiteDatabase; import…
-
10
votes2
answers973
viewsQ: Enable Proguard on Android app
I did an example project, using SQLCipher, and I’m trying to obfuscate the code with the Proguard, however, after exporting and signing the application, and converting the.Dex classes with the…
-
3
votes1
answer339
viewsQ: Send an object using Gson
I have the following problem: I need to send an object to my web-service, but it is not feasible to use Jsonstringer, because my class has many fields. What would be the best way to solve this…
-
1
votes4
answers197
viewsQ: Calling Gridview event in Activity
I have a Gridview Adapter and in it I possess a ImageButton to delete items. It is deleting correctly, however, every time an item is deleted I need to set the current quantity in one TextView that…
-
4
votes1
answer142
viewsQ: Edittexts dependent on an Android Gridview
I have two Edittexts, a discount value, a percentage and an update Imagebutton, all are in a Gridview. When clicking on the Imagebutton, the value entered in the percentage field should be converted…