 |
อยากจะสร้างแอพส่งสินค้า โดยอยากให้แอพจัดเก็บพิกัดปัจจุบันลงดาต้าเบสทุก30วิ แบบรถวิ่งเคลื่อนที่ก็เก็บพิกัดลงดาค้าเบส ต้องทำแบบไหนคะ |
|
 |
|
|
 |
 |
|
อยากเก็บพิกัดปัจจุบัน แม้ขณะรถวิ่งอยู่อ่าคะ แต่พอลองไปวิ่ง มันเก็บอยู่ค่าเดียวตั้งแต่ออกจากบ้านเลยคะ ช่วยดูให้หน่อยนะคะ
Code
gps = new GPSTracker(MainActivity.this);
if(gps.canGetLocation()){
timer = new Timer();
timer.schedule(new TimerTask() {
public void run() {
double latitudeme = gps.getLatitude();
Log.e("MainFragment", String.valueOf(latitudeme));
double longitudeme = gps.getLongitude();
Log.e("MainFragment", String.valueOf(longitudeme));
try {
Connection con = connectionClass.CONN();
String query = "INSERT INTO dbo.Tracking (Latitude, Longitude, LogTime, UTCTime ) VALUES ('" + latitudeme + "','" + longitudeme + "', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP )";
Statement stmt = con.createStatement();
ResultSet rs = stmt.executeQuery(query);
while (rs.next()) {
}
} catch (Exception e) {
e.printStackTrace();
}
}
}, 0, 30000);
}else{
}
Code
package app.meter.com.meter;
/**
* Created by User on 10/4/2016.
*/
import android.app.Service;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.os.IBinder;
import android.provider.Settings;
import android.support.v7.app.AlertDialog;
import android.util.Log;
public class GPSTracker extends Service implements LocationListener {
private final Context mContext;
// Flag for GPS status
boolean isGPSEnabled = false;
// Flag for network status
boolean isNetworkEnabled = false;
// Flag for GPS status
boolean canGetLocation = false;
Location location; // Location
double latitude; // Latitude
double longitude; // Longitude
// The minimum distance to change Updates in meters
private static final long MIN_DISTANCE_CHANGE_FOR_UPDATES = 10; // 10 meters
// The minimum time between updates in milliseconds
private static final long MIN_TIME_BW_UPDATES = 1000 * 60 * 1; // 1 minute
// Declaring a Location Manager
protected LocationManager locationManager;
public GPSTracker(Context context) {
this.mContext = context;
getLocation();
}
public Location getLocation() {
try {
locationManager = (LocationManager) mContext
.getSystemService(LOCATION_SERVICE);
// Getting GPS status
isGPSEnabled = locationManager
.isProviderEnabled(LocationManager.GPS_PROVIDER);
// Getting network status
isNetworkEnabled = locationManager
.isProviderEnabled(LocationManager.NETWORK_PROVIDER);
if (!isGPSEnabled && !isNetworkEnabled) {
// No network provider is enabled
} else {
this.canGetLocation = true;
if (isNetworkEnabled) {
locationManager.requestLocationUpdates(
LocationManager.NETWORK_PROVIDER,
MIN_TIME_BW_UPDATES,
MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
Log.d("Network", "Network");
if (locationManager != null) {
location = locationManager
.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
if (location != null) {
latitude = location.getLatitude();
longitude = location.getLongitude();
}
}
}
// If GPS enabled, get latitude/longitude using GPS Services
if (isGPSEnabled) {
if (location == null) {
locationManager.requestLocationUpdates(
LocationManager.GPS_PROVIDER,
MIN_TIME_BW_UPDATES,
MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
Log.d("GPS Enabled", "GPS Enabled");
if (locationManager != null) {
location = locationManager
.getLastKnownLocation(LocationManager.GPS_PROVIDER);
if (location != null) {
latitude = location.getLatitude();
longitude = location.getLongitude();
}
}
}
}
}
}
catch (Exception e) {
e.printStackTrace();
}
return location;
}
/**
* Stop using GPS listener
* Calling this function will stop using GPS in your app.
* */
public void stopUsingGPS(){
if(locationManager != null){
locationManager.removeUpdates(GPSTracker.this);
}
}
/**
* Function to get latitude
* */
public double getLatitude(){
if(location != null){
latitude = location.getLatitude();
}
// return latitude
return latitude;
}
/**
* Function to get longitude
* */
public double getLongitude(){
if(location != null){
longitude = location.getLongitude();
}
// return longitude
return longitude;
}
/**
* Function to check GPS/Wi-Fi enabled
* @return boolean
* */
public boolean canGetLocation() {
return this.canGetLocation;
}
/**
* Function to show settings alert dialog.
* On pressing the Settings button it will launch Settings Options.
* */
public void showSettingsAlert(){
AlertDialog.Builder alertDialog = new AlertDialog.Builder(mContext);
// Setting Dialog Title
alertDialog.setTitle("GPS is settings");
// Setting Dialog Message
alertDialog.setMessage("GPS is not enabled. Do you want to go to settings menu?");
// On pressing the Settings button.
alertDialog.setPositiveButton("Settings", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,int which) {
Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
mContext.startActivity(intent);
}
});
// On pressing the cancel button
alertDialog.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
}
});
// Showing Alert Message
alertDialog.show();
}
@Override
public void onLocationChanged(Location location) {
}
@Override
public void onProviderDisabled(String provider) {
}
@Override
public void onProviderEnabled(String provider) {
}
@Override
public void onStatusChanged(String provider, int status, Bundle extras) {
}
@Override
public IBinder onBind(Intent arg0) {
return null;
}
}
Tag : Mobile, Android, Tablets, Mobile
|
|
 |
 |
 |
 |
Date :
2016-10-07 11:35:28 |
By :
aummyasia |
View :
1141 |
Reply :
9 |
|
 |
 |
 |
 |
|
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ลองให้มัน write ตัว Location ลงใน EditText ดูก่อนครับ มันมีการอัพเดด สถานที่ให้หรือเปล่าครับ
|
 |
 |
 |
 |
Date :
2016-10-07 17:48:49 |
By :
mr.win |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ลองเอา get_location() ไปใส่ไว้ใน location onchange ครับ
คือ get_location() มันโดนเรียกจาก struction onload ครั้งเดียว เล่ยทำให้มีค่าเดียว
อยากได้ ทุกครั้งที่เปลี่ยนสถานที่ก็ต้องเอาไปไว้ใน event onchange
|
 |
 |
 |
 |
Date :
2016-10-10 16:48:46 |
By :
Chaidhanan |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ครับ
และให้ดี timer ไม่ต้องใช้ ใช้วิธีการ +เวลา ทดแทน
ประกาศตัวแปร global ไว้เก็บเวลา + 30 วินาทีจากเวลาปัจจุบัน
ใน location.onchange
ถ้าเวลา ปัจจจุบัน > เวลาที่กำหนด ให้ save ลง database และตั้งเวลาใหม่ +30 วิ
คือถ้ารถอยู่กับที่ ไม่มีการเปลี่ยนตำแหน่ง ก็จะไม่ต้องจัดเก็บลง database จะเก็บเฉพาะกรณีที่มีการเคลื่อนไหว
|
ประวัติการแก้ไข 2016-10-11 14:03:03
 |
 |
 |
 |
Date :
2016-10-11 14:01:45 |
By :
Chaidhanan |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ได้ครับ แล้วแต่ความต้องการ
|
 |
 |
 |
 |
Date :
2016-10-11 16:11:22 |
By :
Chaidhanan |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ได้ครับ แต่ 3.6 มันจะเป็น ไมล์/วินาที ก็แปลงต่อไปอีกทีนะครับ
|
 |
 |
 |
 |
Date :
2016-10-14 07:41:46 |
By :
Chaidhanan |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|