本文介绍了找不到三星银河注4指纹的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用指纹的应用程序上工作.一切似乎都很好,但是当我调试应用程序时,
I am working on an app where I use fingerprint. Everything seems to be good but when I debug my app,
fingerprintManager.isHardwareDetected()
返回假.为什么?
FingerprintManager fingerprintManager = (FingerprintManager) getSystemService(FINGERPRINT_SERVICE);
if(!fingerprintManager.isHardwareDetected()){
textView.setText("Your Device does not have a Fingerprint Sensor");
}
我在Stack Vverflow上阅读了一些答案,其中说Note4指纹有问题-它是旧手机,不支持FingerprintManager.这是问题吗?有什么解决方法吗?
I have read some answers on Stack Vverflow that there is a problem with the Note4 fingerprint - it is an old phone and it does not support the FingerprintManager. Is this the problem? Is there any workaround?
谢谢!
推荐答案
Note4不支持Android指纹API.
Note4 don't support Android Fingerprint API.
您必须使用Samsung专有的PASS SDK: http://developer.samsung.com/galaxy/pass
You have to use Samsung proprietary PASS SDK:http://developer.samsung.com/galaxy/pass
这篇关于找不到三星银河注4指纹的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!