Posts by Fernando Gomes • 31 points
5 posts
-
0
votes2
answers4107
viewsA: How do I pass parameters from the last Fragment to the previous Fragment?
This I solved in a simple way for something simple. In an Activity Master where I manage the Fragments I declare a public variable. public class Master extends ActionBarActivity { public long…
-
1
votes3
answers4045
viewsA: DBMS to Sqlite
I use the Sqlite Administration (http://sqliteadmin.orbmu2k.de/). An executable tool (no need to install) and simple to use. Being a simple BD the tool helps a lot.…
-
1
votes1
answer1189
viewsQ: How to get Paramentro in a C# sent from Android web service
I’m consuming a web service developed in C#, from an application on Android. By sending simple types per parameter such as string, int or long, I can usually get the information just by placing the…
-
0
votes8
answers7407
viewsA: What better way to work offline and synchronize data with server?
For the first problem use Sqlite. The second problem can be solved with a Change Log on the server. When updating server information to the device, you should get the id of the last log record…
-
1
votes2
answers569
viewsQ: Hide and show the header of a listview when scrolled
I’m developing a app for Android using Android Studio, and want a listview with header where the header is hidden when the list is scrolled down, and it appears when scrolled up regardless of the…