android - Android API 中的 Spline 抽象类在哪里?

标签 android spline

我找到了 2012 年 Android API 的 Spline 实现: https://android.googlesource.com/platform/frameworks/base/+/master/core/java/android/util/Spline.java

可是我做不到

import android.util.Spline 

进入我的 SDK 29 android 项目。

它是否被重构并移动到其他地方? Android SDK 29 中包含 Spline 抽象类和 LinearSpline 静态类的当前包在哪里?

最佳答案

Is it refactored and moved to some where else?

没有。

Where is the current package containing the Spline Abstract class and the LinearSpline statical class now in Android SDK 29?

它们不是 Android SDK 的一部分。 Spline标记为@hide,表示它是框架实现的一部分,但不是SDK的一部分。

关于android - Android API 中的 Spline 抽象类在哪里?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57558627/

相关文章:

android - 如何测试/执行 android 的屏幕旋转行为?

Android LocationManager locationManager.requestLocationUpdates() 不工作

android - Eons 类在 android 中被调用?

python - python 中是否有简单的方法可以将数据点推断到 future ?

python - scipy.interpolate.splrep 和 scipy.interpolate.UnivariateSpline 之间的用例有什么区别?

android - 将预构建库与 Android NDK 结合使用时出现构建问题

java - 在不允许的地方处理空值

r - 在 glm() 中使用 splines 包中的 ns() 函数

c# - C# 中的 3D 样条插值(曲面插值)

python - 如何在 Python 中仅在特定点进行平滑样条插值设置导数?