Home | History | Annotate | Download | only in fingerprint
      1 /*
      2  * Copyright (C) 2015 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License
     15  */
     16 
     17 package com.android.settings.fingerprint;
     18 
     19 import android.content.Intent;
     20 import android.content.res.Resources;
     21 import android.os.UserHandle;
     22 
     23 import com.android.internal.logging.MetricsProto.MetricsEvent;
     24 import com.android.settings.ChooseLockSettingsHelper;
     25 import com.android.settings.R;
     26 import com.android.settings.SetupWizardUtils;
     27 
     28 public class SetupFingerprintEnrollFindSensor extends FingerprintEnrollFindSensor {
     29 
     30     @Override
     31     protected int getContentView() {
     32         return R.layout.fingerprint_enroll_find_sensor;
     33     }
     34 
     35     @Override
     36     protected Intent getEnrollingIntent() {
     37         Intent intent = new Intent(this, SetupFingerprintEnrollEnrolling.class);
     38         intent.putExtra(ChooseLockSettingsHelper.EXTRA_KEY_CHALLENGE_TOKEN, mToken);
     39         if (mUserId != UserHandle.USER_NULL) {
     40             intent.putExtra(Intent.EXTRA_USER_ID, mUserId);
     41         }
     42         SetupWizardUtils.copySetupExtras(getIntent(), intent);
     43         return intent;
     44     }
     45 
     46     @Override
     47     protected void onApplyThemeResource(Resources.Theme theme, int resid, boolean first) {
     48         resid = SetupWizardUtils.getTheme(getIntent());
     49         super.onApplyThemeResource(theme, resid, first);
     50     }
     51 
     52     @Override
     53     protected int getMetricsCategory() {
     54         return MetricsEvent.FINGERPRINT_FIND_SENSOR_SETUP;
     55     }
     56 }
     57