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.
我想ImageView用箭头从当前用户位置旋转到某个以前保存的 GPS 位置。我该怎么做呢?
ImageView
从方法中获得的初始方位是否是Location.distanceBetween正确的方法?如果是这样,我如何将它与罗盘读数一起使用?
Location.distanceBetween
您可以bearingTo在类中使用该方法Location,然后使用该方法检索当前方位SensorManager.getOrientation。
bearingTo
Location
SensorManager.getOrientation
最后,将两个结果相加,绘制箭头。
希望能帮助到你。