背景
我有一个小应用程序,我想在其中添加指纹身份验证。此身份验证仅用于解锁应用程序。
重要的是:
- 该应用程序的要点是作为服务在后台运行。
- 用户必须能够从系统中的任何位置(不仅仅是活动)解锁应用程序。
- 用户必须触摸通知才能启动服务,从而启动指纹认证。
问题
FingerprintService
必须从前台开始Activity
。即使我将服务置于前台,也会startForeground()
发出FingerprintService
警告:
01-01 23:22:11.015 1576-1576/system_process W/FingerprintService: Rejecting com.package.myapp ; not in foreground
01-01 23:22:11.015 1576-1576/system_process V/FingerprintService: authenticate(): reject com.package.myapp
仅当我在应用程序之外(例如,在主屏幕中)触摸通知时,才会发生这种情况。如果我在应用程序中触摸它,则身份验证有效,并且我可以使用我的指纹解锁(因为它Acticity
是聚焦的,在前景中)。
我当前的代码(仅相关部分)
从 中Activity
,显示启动服务的通知:
// NofityManager is a factory class that returns a configured Builder
NotificationCompat.Builder builder = NotifyManager.getBuilder(this);
NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
notificationManager.notify(SERVICE_NOTIFICATION_ID, builder.build());
服务启动后,放到前台启动指纹认证:
@Override
public void onCreate()
{
NotificationCompat.Builder builder = NotifyManager.getBuilder(this)
.setContentTitle(getString(R.string.notification_title2))
.setContentText(getString(R.string.notification_text));
startForeground(FOREGROUND_NOTIFICATION_ID, builder.build());
// this is the class that I use to setup the FingerprintService
// and call authenticate()
fingerprintValidator = new FingerprintValidator(this);
if(fingerprintValidator.check(false))
{
try
{
fingerprintValidator.startService(this);
}
catch(RuntimeException ex)
{
Log.d(TAG, ex.getLocalizedMessage() + "\n" + ex.getStackTrace().toString());
}
}
else
{
// notify the user
}
}
@Override
public int onStartCommand(Intent intent, int flags, int startId)
{
return START_STICKY;
}
问题
如何使用FingerprintService
在前台运行的自定义服务?我知道这是可能的,因为我看到另一个应用程序这样做,所以必须是一种方式。