Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/src/main/java/com/zcshou/gogogo/HistoryActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ private List<Map<String, Object>> fetchAllRecord() {
String Location = cursor.getString(1);
String Longitude = cursor.getString(2);
String Latitude = cursor.getString(3);
long TimeStamp = cursor.getInt(4);
long TimeStamp = cursor.getLong(4);
String BD09Longitude = cursor.getString(5);
String BD09Latitude = cursor.getString(6);
Log.d("TB", ID + "\t" + Location + "\t" + Longitude + "\t" + Latitude + "\t" + TimeStamp + "\t" + BD09Longitude + "\t" + BD09Latitude);
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/com/zcshou/joystick/JoyStick.java
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ private void fetchAllRecord() {
String Location = cursor.getString(1);
String Longitude = cursor.getString(2);
String Latitude = cursor.getString(3);
long TimeStamp = cursor.getInt(4);
long TimeStamp = cursor.getLong(4);
String BD09Longitude = cursor.getString(5);
String BD09Latitude = cursor.getString(6);
Log.d("TB", ID + "\t" + Location + "\t" + Longitude + "\t" + Latitude + "\t" + TimeStamp + "\t" + BD09Longitude + "\t" + BD09Latitude);
Expand Down
Loading