Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想创建一个 android 应用程序,其中将有多个用户使用 android 手机,我必须从网站监控他们的位置。那可能吗?
您需要做的就是编写一个接受用户位置信息的 Web 服务。现在创建一个与此 Web 服务通信并定期为其提供位置信息的 android 服务应用程序。
Android 应用程序将从 GPS 获取此位置信息 - 纬度和对数信息以及来自系统的时间,并在 Web 服务器上更新其状态。
在 Web 服务器上,您可以创建一个页面,该页面将根据数据库中的纬度和经度解析地名。
这样,您不仅可以知道用户的位置,还可以跟踪用户的移动。