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 Sensor Listener 正在读取最多 6 或 7 个小数点的浮点加速度计数据。我不需要那种精度。有没有办法读取到 1 或 2 个小数点并减少开销。
你可以试试这个...如果该值从不低于小数点第 6 位....它会将值返回到小数点的第 2 位
(float)Math.Round(value * 10000) / 10000