从自定义服务

时间:2017-01-02 00:14:10

标签: android android-service android-fingerprint-api

背景

我有一个小应用程序,我想添加指纹身份验证。此身份验证仅用于解锁应用。

重要的是:

  • 该应用程序的要点是在后台作为服务运行。
  • 用户必须能够从系统中的任何位置解锁应用程序(而不仅仅是从活动中解锁)。
  • 用户必须触摸通知才能启动该服务,从而启动指纹认证。

问题

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?我知道这是可能的,因为我看到另一个应用程序这样做,所以必须成为一种方式。

1 个答案:

答案 0 :(得分:1)

让您的通知启动运行指纹传感器的活动,然后启动您的服务。