我正在尝试将我的位置存储到parse.com数据库中,但我遇到了一个问题。首先,我不能将任何东西存储到数据库中,我相信它会返回null或者其他东西。不太清楚这种行为是什么。有人能引导我朝正确的方向发展吗?
double longitude = location.getLongitude();
double latitude = location.getLatitude();
// Get longitude of the current location
// Create a LatLng object for the current location
LatLng latLng = new LatLng(latitude, longitude);
ParseObject parkingobject = new ParseObject("Cooking");
parkingobject.put("username","Alana");
ParseGeoPoint point = new ParseGeoPoint(latLng); //<----- This is where the error is.
parkingobject.put("Location", point);
答案 0 :(得分:1)
List<T>
试试这段代码。