SetupFingerprintEnrollFindSensor.java revision 823cddc06858ad8d0f99c6dc1f296056d8c396a7
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
17package com.android.settings.fingerprint;
18
19import android.content.Intent;
20import android.content.res.Resources;
21import android.view.View;
22import android.widget.Button;
23
24import com.android.internal.logging.MetricsLogger;
25import com.android.settings.ChooseLockSettingsHelper;
26import com.android.settings.R;
27import com.android.settings.SetupWizardUtils;
28import com.android.setupwizardlib.view.NavigationBar;
29
30public class SetupFingerprintEnrollFindSensor extends FingerprintEnrollFindSensor
31        implements NavigationBar.NavigationBarListener {
32
33    @Override
34    protected int getContentView() {
35        return R.layout.setup_fingerprint_enroll_find_sensor;
36    }
37
38    @Override
39    protected Intent getEnrollingIntent() {
40        Intent intent = new Intent(this, SetupFingerprintEnrollEnrolling.class);
41        intent.putExtra(ChooseLockSettingsHelper.EXTRA_KEY_CHALLENGE_TOKEN, mToken);
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 void initViews() {
54        SetupWizardUtils.setImmersiveMode(this);
55
56        final View nextButton = findViewById(R.id.next_button);
57        if (nextButton != null) {
58            nextButton.setVisibility(View.GONE);
59        }
60
61        getNavigationBar().setNavigationBarListener(this);
62        getNavigationBar().getBackButton().setVisibility(View.GONE);
63    }
64
65    @Override
66    protected Button getNextButton() {
67        return getNavigationBar().getNextButton();
68    }
69
70    @Override
71    public void onNavigateBack() {
72        onBackPressed();
73    }
74
75    @Override
76    public void onNavigateNext() {
77        onNextButtonClick();
78    }
79
80    @Override
81    protected int getMetricsCategory() {
82        return MetricsLogger.FINGERPRINT_FIND_SENSOR_SETUP;
83    }
84}
85