문제

StrictMode API 유사한제안 된 이 stackoverflow 질문 에서.API는 extectCustomSlowMethod () API를 포함하도록 API가 확장되었는데 일부 확장 사례를 처리 할 수있는 것처럼 들리 었음 (문서가 디스크 메소드에서 복사 - 붙여 넣기 때문에 수행하는 것이 무엇인지 확신하지는 않지만)

그러나 API가 API에서 사용할 수없는 추가 하드웨어 액세스 감지를 포함하도록 API를 확장하고 싶습니다.따라서, 내 질문은 어디에서 strictMode API를 구현하는 코드를 찾을 수 있습니까?

도움이 되었습니까?

해결책

where can I find the code that implements the StrictMode API?

In the Android source code.

다른 팁

Here's the main Java interface:

https://android.googlesource.com/platform/frameworks/base/+/master/core/java/android/os/StrictMode.java

The implementations is all over the Android guts, though.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top