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 import android.view.View;
     23 import android.widget.TextView;
     24 
     25 import com.android.internal.logging.MetricsProto.MetricsEvent;
     26 import com.android.settings.ChooseLockSettingsHelper;
     27 import com.android.settings.R;
     28 import com.android.settings.SetupWizardUtils;
     29 
     30 public class SetupFingerprintEnrollFinish extends FingerprintEnrollFinish {
     31 
     32     @Override
     33     protected Intent getEnrollingIntent() {
     34         Intent intent = new Intent(this, SetupFingerprintEnrollEnrolling.class);
     35         intent.putExtra(ChooseLockSettingsHelper.EXTRA_KEY_CHALLENGE_TOKEN, mToken);
     36         if (mUserId != UserHandle.USER_NULL) {
     37             intent.putExtra(Intent.EXTRA_USER_ID, mUserId);
     38         }
     39         SetupWizardUtils.copySetupExtras(getIntent(), intent);
     40         return intent;
     41     }
     42 
     43     @Override
     44     protected void onApplyThemeResource(Resources.Theme theme, int resid, boolean first) {
     45         resid = SetupWizardUtils.getTheme(getIntent());
     46         super.onApplyThemeResource(theme, resid, first);
     47     }
     48 
     49     @Override
     50     protected void initViews() {
     51         super.initViews();
     52 
     53         final TextView message = (TextView) findViewById(R.id.message);
     54         message.setText(R.string.setup_fingerprint_enroll_finish_message);
     55 
     56         final TextView secondaryMessage = (TextView) findViewById(R.id.message_secondary);
     57         secondaryMessage.setVisibility(View.VISIBLE);
     58     }
     59 
     60     @Override
     61     protected int getMetricsCategory() {
     62         return MetricsEvent.FINGERPRINT_ENROLL_FINISH_SETUP;
     63     }
     64 }
     65