This question already has an answer here:
Method FloatMath.sqrt() not found
(1个答案)
4年前关闭。
我将android studio更新到2.1.2并打开了以前的项目,现在它表明FloatMath.sqrt()已被弃用,无法解析方法'sqrt(float)'
apit 22中不推荐使用
引用链接-https://developer.android.com/reference/android/util/FloatMath.html
(1个答案)
4年前关闭。
我将android studio更新到2.1.2并打开了以前的项目,现在它表明FloatMath.sqrt()已被弃用,无法解析方法'sqrt(float)'
最佳答案
只需使用 float 类型将其转换为-
(float)Math.sqrt(...)
apit 22中不推荐使用
FloatMath
引用链接-https://developer.android.com/reference/android/util/FloatMath.html
10-03 00:58