我正在开发一个使用指纹的应用程序。一切看起来都很好,但是当我调试我的应用程序时,
fingerprintManager.isHardwareDetected()返回假。为什么?
FingerprintManager fingerprintManager = (FingerprintManager) getSystemService(FINGERPRINT_SERVICE);
if(!fingerprintManager.isHardwareDetected()){
textView.setText("Your Device does not have a Fingerprint Sensor");
}我在Stack上读到了一些答案: Note4指纹有问题--这是一部旧手机,它不支持FingerprintManager。这就是问题所在吗?有什么解决办法吗?
谢谢!
发布于 2017-04-13 13:08:23
Note4不支持安卓指纹API。
您必须使用三星专有的PASS:http://developer.samsung.com/galaxy/pass
https://stackoverflow.com/questions/43333140
复制相似问题