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 中有一个自定义平面图,我正在尝试确定如何将平面图上的位置转换为屏幕坐标。
是否有推荐的方法来实现这一点,因为我不确定如何进行。我没有使用 Maps API,只是我自己创建的自定义平面图。
尝试这个:
screenCoordX = (imageCoordX / imageWidth) * screenWidth; screenCoordY = (imageCoordY / imageHeight) * screenHeight;
确保所有值都是浮点数/双精度值。
这应该让你开始。