package android.view;
public final class Choreographer {
...
    public long getFrameTime() {
        return getFrameTimeNanos() / TimeUtils.NANOS_PER_MS;
    }
...
}


我看不到使用Error:(195, 50) error: cannot find symbol method getFrameTime()收到错误消息Choreographer.getInstance().getFrameTime()的原因

build.gradle

android {
compileSdkVersion 23
buildToolsVersion "23.0.2"

defaultConfig {
    minSdkVersion 21
    targetSdkVersion 23

最佳答案

因为method@Hide注释。
不过,仍然可以通过反射进行访问。

关于java - 为什么不能在Choreographer类中访问getFrameTime()?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34781810/

10-10 07:00