Android MTK 屏下指纹的调试过程记录

Demo链接 ----->  https://download.csdn.net/download/u011694328/89118346

一些品牌手机都有了屏下指纹的功能,还算是个比较新颖的功能,最近有项目需要使用屏下指纹, 使用的是汇顶(Goodix)的指纹方案,经过坚难尝试,终于实现了屏下指纹录入与解锁,下面记录一些知识要点,同时分享给遇到相同问题的。

 1, 自从Android 12 以后, SystemUI 里是自带了屏下指纹方案的. 具体代码是在 frameworks\base\packages\SystemUI\src\com\android\systemui\biometrics ,所有以 Udfps 开头的类均是跟屏下指纹相关。如果要打开自带的屏下指纹UI ,需要在 frameworks 里设置指纹传感器的 X轴 , Y轴 ,半径大小,贴上详细代码。

路径 -----> frameworks/base/services/core/java/com/android/server/biometrics/AuthService.java

final int[] udfpsProps = getContext().getResources().getIntArray(com.android.internal.R.array.config_udfps_sensor_props);

重要的是 config_udfps_sensor_props 数组 , 默认的是空,下面是原始的代码

    <!-- The properties of a UDFPS sensor in pixels, in the order listed below: --><integer-array name="config_udfps_sensor_props" translatable="false" ><!--<item>sensorLocationX</item><item>sensorLocationY</item><item>sensorRadius</item>--></integer-array>

 //  The existence of config_udfps_sensor_props indicates that the sensor is UDFPS.

注释的意思是如果这个数组存在,表明是屏下指纹 。 这里要根据屏幕上传感器的位置来确定 X Y R. 指纹方案商会提供。默认的指纹如下图。

2 , 打开传感器后,调好正确的位置,下面是到设置里录入指纹。

代码路径 packages\apps\Settings\src\com\android\settings\biometrics\fingerprint\FingerprintEnrollEnrolling.java

下面贴上我修改过的代码, 

package com.android.settings.biometrics.fingerprint;import android.animation.Animator;
import android.animation.ObjectAnimator;
import android.annotation.IntDef;
import android.annotation.NonNull;
import android.annotation.Nullable;
import android.app.Dialog;
import android.app.settings.SettingsEnums;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.res.Configuration;
import android.graphics.drawable.Animatable2;
import android.graphics.drawable.AnimatedVectorDrawable;
import android.graphics.drawable.Drawable;
import android.graphics.drawable.LayerDrawable;
import android.hardware.fingerprint.FingerprintManager;
import android.hardware.fingerprint.FingerprintSensorPropertiesInternal;
import android.os.Bundle;
import android.os.Process;
import android.os.VibrationAttributes;
import android.os.VibrationEffect;
import android.os.Vibrator;
import android.text.TextUtils;
import android.util.Log;
import android.view.MotionEvent;
import android.view.OrientationEventListener;
import android.view.Surface;
import android.view.View;
import android.view.accessibility.AccessibilityEvent;
import android.view.accessibility.AccessibilityManager;
import android.view.animation.AnimationUtils;
import android.view.animation.Interpolator;
import android.widget.ImageView;
import android.widget.ProgressBar;
import android.widget.TextView;
import com.android.settings.R;
import com.android.settings.biometrics.BiometricEnrollSidecar;
import com.android.settings.biometrics.BiometricUtils;
import com.android.settings.biometrics.BiometricsEnrollEnrolling;
import com.android.settings.core.instrumentation.InstrumentedDialogFragment;
import com.android.settingslib.display.DisplayDensityUtils;
import com.airbnb.lottie.LottieAnimationView;
import com.google.android.setupcompat.template.FooterBarMixin;
import com.google.android.setupcompat.template.FooterButton;
import com.google.android.setupcompat.util.WizardManagerHelper;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.util.HashMap;
import java.util.List;//import com.goodix.fingerprint.ShenzhenConstants;
//import com.goodix.fingerprint.service.GoodixFingerprintManager;public class FingerprintEnrollEnrolling extends BiometricsEnrollEnrolling {private static final String TAG = "zgyFp";static final String TAG_SIDECAR = "sidecar";private static final int PROGRESS_BAR_MAX = 10000;private static final int STAGE_UNKNOWN = -1;private static final int STAGE_CENTER = 0;private static final int STAGE_GUIDED = 1;private static final int STAGE_FINGERTIP = 2;private static final int STAGE_LEFT_EDGE = 3;private static final int STAGE_RIGHT_EDGE = 4;@IntDef({STAGE_UNKNOWN, STAGE_CENTER, STAGE_GUIDED, STAGE_FINGERTIP, STAGE_LEFT_EDGE, STAGE_RIGHT_EDGE})@Retention(RetentionPolicy.SOURCE)private @interface EnrollStage {}/*** If we don't see progress during this time, we show an error message to remind the users that* they need to lift the finger and touch again.*/private static final int HINT_TIMEOUT_DURATION = 2500;private static final VibrationEffect VIBRATE_EFFECT_ERROR = VibrationEffect.createWaveform(new long[] {0, 5, 55, 60}, -1);private static final VibrationAttributes FINGERPRINT_ENROLLING_SONFICATION_ATTRIBUTES = VibrationAttributes.createForUsage(VibrationAttributes.USAGE_ACCESSIBILITY);private FingerprintManager mFingerprintManager;private boolean mCanAssumeUdfps;@Nullable private ProgressBar mProgressBar;private ObjectAnimator mProgressAnim;private TextView mDescriptionText;private TextView mErrorText;private Interpolator mFastOutSlowInInterpolator;private Interpolator mLinearOutSlowInInterpolator;private Interpolator mFastOutLinearInInterpolator;private boolean mAnimationCancelled;@Nullable private AnimatedVectorDrawable mIconAnimationDrawable;@Nullable private AnimatedVectorDrawable mIconBackgroundBlinksDrawable;private boolean mRestoring;private Vibrator mVibrator;private boolean mIsSetupWizard;private AccessibilityManager mAccessibilityManager;private boolean mIsAccessibilityEnabled;private LottieAnimationView mIllustrationLottie;private boolean mHaveShownUdfpsTipLottie;private boolean mHaveShownUdfpsLeftEdgeLottie;private boolean mHaveShownUdfpsRightEdgeLottie;private boolean mShouldShowLottie;private OrientationEventListener mOrientationEventListener;private int mPreviousRotation = 0;//    private GoodixFingerprintManager mGoodixFingerprintManager;
//    private ImageView mFingerprintAnimator;
//    private CircleView mCircleView;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);int flags = View.SYSTEM_UI_FLAG_FULLSCREEN | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;getWindow().getDecorView().setSystemUiVisibility(flags);mFingerprintManager = getSystemService(FingerprintManager.class);final List<FingerprintSensorPropertiesInternal> props = mFingerprintManager.getSensorPropertiesInternal();mCanAssumeUdfps = props.size() == 1 && props.get(0).isAnyUdfpsType();mAccessibilityManager = getSystemService(AccessibilityManager.class);mIsAccessibilityEnabled = mAccessibilityManager.isEnabled();listenOrientationEvent();setContentView(R.layout.fingerprint_enroll_enrolling_base); mIsSetupWizard = WizardManagerHelper.isAnySetupWizard(getIntent());updateTitleAndDescription();//            mGoodixFingerprintManager = GoodixFingerprintManager.getFingerprintManager(this);
//            
//            getMainThreadHandler().postDelayed(mDelayedSendCmd, getFinishDelay());DisplayDensityUtils displayDensity = new DisplayDensityUtils(getApplicationContext());int currentDensityIndex = displayDensity.getCurrentIndex();final int currentDensity = displayDensity.getValues()[currentDensityIndex];final int defaultDensity = displayDensity.getDefaultDensity();mShouldShowLottie = defaultDensity == currentDensity;boolean isLandscape = BiometricUtils.isReverseLandscape(getApplicationContext()) || BiometricUtils.isLandscape(getApplicationContext());updateOrientation((isLandscape ? Configuration.ORIENTATION_LANDSCAPE : Configuration.ORIENTATION_PORTRAIT));mErrorText = findViewById(R.id.error_text);mProgressBar = findViewById(R.id.fingerprint_progress_bar);
//        mFingerprintAnimator = findViewById(R.id.fingerprint_image_hint);
//        mCircleView = findViewById(R.id.circle_view);mVibrator = getSystemService(Vibrator.class);//        setSensorAreaOnTouchListener(mFingerprintAnimator);final LayerDrawable fingerprintDrawable = mProgressBar != null ? (LayerDrawable) mProgressBar.getBackground() : null;if (fingerprintDrawable != null) {mIconAnimationDrawable = (AnimatedVectorDrawable) fingerprintDrawable.findDrawableByLayerId(R.id.fingerprint_animation);mIconBackgroundBlinksDrawable = (AnimatedVectorDrawable) fingerprintDrawable.findDrawableByLayerId(R.id.fingerprint_background);mIconAnimationDrawable.registerAnimationCallback(mIconAnimationCallback);}mFastOutSlowInInterpolator = AnimationUtils.loadInterpolator(this, android.R.interpolator.fast_out_slow_in);mLinearOutSlowInInterpolator = AnimationUtils.loadInterpolator(this, android.R.interpolator.linear_out_slow_in);mFastOutLinearInInterpolator = AnimationUtils.loadInterpolator(this, android.R.interpolator.fast_out_linear_in);mRestoring = savedInstanceState != null;}//    private void setSensorAreaOnTouchListener(View view) {
//        view.setOnTouchListener(new View.OnTouchListener() {
//            public boolean onTouch(View view, MotionEvent motionEvent) {
//                switch (motionEvent.getAction()) {
//                    case MotionEvent.ACTION_DOWN:
//                        mFingerprintAnimator.setVisibility(View.GONE);
//                        mCircleView.setVisibility(View.VISIBLE);
//                        break;
//                    case MotionEvent.ACTION_UP:
//                    case MotionEvent.ACTION_CANCEL:
//						 mFingerprintAnimator.setVisibility(View.VISIBLE);
//						 mCircleView.setVisibility(View.GONE);
//                        break;
//                }
//                return true;
//            }
//        });
//    }@Overrideprotected BiometricEnrollSidecar getSidecar() {final FingerprintEnrollSidecar sidecar = new FingerprintEnrollSidecar();sidecar.setEnrollReason(FingerprintManager.ENROLL_ENROLL);return sidecar;}@Overrideprotected boolean shouldStartAutomatically() {if (mCanAssumeUdfps) {return mRestoring;}return true;}@Overrideprotected void onStart() {super.onStart();updateProgress(false);updateTitleAndDescription();if (mRestoring) {startIconAnimation();}}//    @Override
//    protected void onResume() {
//        super.onResume();
//        mGoodixFingerprintManager.showSensorViewWindow(true);
//        
//        mGoodixFingerprintManager.setHBMMode(true);
//    }@Overridepublic void onEnterAnimationComplete() {super.onEnterAnimationComplete();if (mCanAssumeUdfps) {startEnrollment();}mAnimationCancelled = false;startIconAnimation();}private void startIconAnimation() {if (mIconAnimationDrawable != null) {mIconAnimationDrawable.start();}}private void stopIconAnimation() {mAnimationCancelled = true;if (mIconAnimationDrawable != null) {mIconAnimationDrawable.stop();}}@Overrideprotected void onStop() {super.onStop();stopIconAnimation();//        mGoodixFingerprintManager.showSensorViewWindow(false);
//        mGoodixFingerprintManager.setHBMMode(false);}//    @Override
//    protected void onPause() {
//        super.onPause();
//        android.util.Log.d("zgyFp", "--onPause--");
//        mGoodixFingerprintManager.showSensorViewWindow(false);
//    }@Overrideprotected void onDestroy() {stopListenOrientationEvent();super.onDestroy();}private void animateProgress(int progress) {if (mCanAssumeUdfps) {if (progress >= PROGRESS_BAR_MAX) {getMainThreadHandler().postDelayed(mDelayedFinishRunnable, getFinishDelay());}return;}if (mProgressAnim != null) {mProgressAnim.cancel();}ObjectAnimator anim = ObjectAnimator.ofInt(mProgressBar, "progress", mProgressBar.getProgress(), progress);anim.addListener(mProgressAnimationListener);anim.setInterpolator(mFastOutSlowInInterpolator);anim.setDuration(250);anim.start();mProgressAnim = anim;}private void animateFlash() {if (mIconBackgroundBlinksDrawable != null) {mIconBackgroundBlinksDrawable.start();}}protected Intent getFinishIntent() {return new Intent(this, FingerprintEnrollFinish.class);}private void updateTitleAndDescription() {if (mCanAssumeUdfps) {updateTitleAndDescriptionForUdfps();return;}if (mSidecar == null || mSidecar.getEnrollmentSteps() == -1) {setDescriptionText(R.string.security_settings_fingerprint_enroll_start_message);} else {setDescriptionText(R.string.security_settings_fingerprint_enroll_repeat_message);}}private void updateTitleAndDescriptionForUdfps() {switch (getCurrentStage()) {case STAGE_CENTER:setHeaderText(R.string.security_settings_fingerprint_enroll_repeat_title);setDescriptionText(R.string.security_settings_udfps_enroll_start_message);break;case STAGE_GUIDED:setHeaderText(R.string.security_settings_fingerprint_enroll_repeat_title);if (mIsAccessibilityEnabled) {setDescriptionText(R.string.security_settings_udfps_enroll_repeat_a11y_message);} else {setDescriptionText(R.string.security_settings_udfps_enroll_repeat_message);}break;case STAGE_FINGERTIP:setHeaderText(R.string.security_settings_udfps_enroll_fingertip_title);if (!mHaveShownUdfpsTipLottie && mIllustrationLottie != null) {mHaveShownUdfpsTipLottie = true;setDescriptionText("");mIllustrationLottie.setAnimation(R.raw.udfps_tip_hint_lottie);mIllustrationLottie.setVisibility(View.VISIBLE);mIllustrationLottie.playAnimation();mIllustrationLottie.setContentDescription(getString(R.string.security_settings_udfps_tip_fingerprint_help));}break;case STAGE_LEFT_EDGE:setHeaderText(R.string.security_settings_udfps_enroll_left_edge_title);if (!mHaveShownUdfpsLeftEdgeLottie && mIllustrationLottie != null) {mHaveShownUdfpsLeftEdgeLottie = true;setDescriptionText("");mIllustrationLottie.setAnimation(R.raw.udfps_left_edge_hint_lottie);mIllustrationLottie.setVisibility(View.VISIBLE);mIllustrationLottie.playAnimation();mIllustrationLottie.setContentDescription(getString(R.string.security_settings_udfps_side_fingerprint_help));} else if (mIllustrationLottie == null) {if (isStageHalfCompleted()) {setDescriptionText(R.string.security_settings_fingerprint_enroll_repeat_message);} else {setDescriptionText(R.string.security_settings_udfps_enroll_edge_message);}}break;case STAGE_RIGHT_EDGE:setHeaderText(R.string.security_settings_udfps_enroll_right_edge_title);if (!mHaveShownUdfpsRightEdgeLottie && mIllustrationLottie != null) {mHaveShownUdfpsRightEdgeLottie = true;setDescriptionText("");mIllustrationLottie.setAnimation(R.raw.udfps_right_edge_hint_lottie);mIllustrationLottie.setVisibility(View.VISIBLE);mIllustrationLottie.playAnimation();mIllustrationLottie.setContentDescription(getString(R.string.security_settings_udfps_side_fingerprint_help));} else if (mIllustrationLottie == null) {if (isStageHalfCompleted()) {setDescriptionText(R.string.security_settings_fingerprint_enroll_repeat_message);} else {setDescriptionText(R.string.security_settings_udfps_enroll_edge_message);}}break;case STAGE_UNKNOWN:default:getLayout().setHeaderText(R.string.security_settings_fingerprint_enroll_udfps_title);setDescriptionText(R.string.security_settings_udfps_enroll_start_message);final CharSequence description = getString(R.string.security_settings_udfps_enroll_a11y);getLayout().getHeaderTextView().setContentDescription(description);setTitle(description);break;}}@EnrollStageprivate int getCurrentStage() {if (mSidecar == null || mSidecar.getEnrollmentSteps() == -1) {return STAGE_UNKNOWN;}final int progressSteps = mSidecar.getEnrollmentSteps() - mSidecar.getEnrollmentRemaining();if (progressSteps < getStageThresholdSteps(0)) {return STAGE_CENTER;} else if (progressSteps < getStageThresholdSteps(1)) {return STAGE_GUIDED;} else if (progressSteps < getStageThresholdSteps(2)) {return STAGE_FINGERTIP;} else if (progressSteps < getStageThresholdSteps(3)) {return STAGE_LEFT_EDGE;} else {return STAGE_RIGHT_EDGE;}}private boolean isStageHalfCompleted() {if (mSidecar == null || mSidecar.getEnrollmentSteps() == -1) {return false;}final int progressSteps = mSidecar.getEnrollmentSteps() - mSidecar.getEnrollmentRemaining();int prevThresholdSteps = 0;for (int i = 0; i < mFingerprintManager.getEnrollStageCount(); i++) {final int thresholdSteps = getStageThresholdSteps(i);if (progressSteps >= prevThresholdSteps && progressSteps < thresholdSteps) {final int adjustedProgress = progressSteps - prevThresholdSteps;final int adjustedThreshold = thresholdSteps - prevThresholdSteps;return adjustedProgress >= adjustedThreshold / 2;}prevThresholdSteps = thresholdSteps;}return true;}private int getStageThresholdSteps(int index) {if (mSidecar == null || mSidecar.getEnrollmentSteps() == -1) {Log.w(TAG, "getStageThresholdSteps: Enrollment not started yet");return 1;}return Math.round(mSidecar.getEnrollmentSteps() * mFingerprintManager.getEnrollStageThreshold(index));}@Overridepublic void onEnrollmentHelp(int helpMsgId, CharSequence helpString) {if (!TextUtils.isEmpty(helpString)) {if (!mCanAssumeUdfps) {mErrorText.removeCallbacks(mTouchAgainRunnable);}showError(helpString);}}@Overridepublic void onEnrollmentError(int errMsgId, CharSequence errString) {Log.d(TAG, "--onEnrollmentError--" + errString);FingerprintErrorDialog.showErrorDialog(this, errMsgId);stopIconAnimation();if (!mCanAssumeUdfps) {mErrorText.removeCallbacks(mTouchAgainRunnable);}}@Overridepublic void onEnrollmentProgressChange(int steps, int remaining) {Log.d(TAG, "----onEnrollmentProgressChange----"+steps + " , remaining = " + remaining);updateProgress(true);updateTitleAndDescription();clearError();animateFlash();if (!mCanAssumeUdfps) {mErrorText.removeCallbacks(mTouchAgainRunnable);mErrorText.postDelayed(mTouchAgainRunnable, HINT_TIMEOUT_DURATION);} else {if (mIsAccessibilityEnabled) {final int percent = (int) (((float)(steps - remaining) / (float) steps) * 100);CharSequence cs = getString(R.string.security_settings_udfps_enroll_progress_a11y_message, percent);AccessibilityEvent e = AccessibilityEvent.obtain();e.setEventType(AccessibilityEvent.TYPE_ANNOUNCEMENT);e.setClassName(getClass().getName());e.setPackageName(getPackageName());e.getText().add(cs);mAccessibilityManager.sendAccessibilityEvent(e);}}}private void updateProgress(boolean animate) {if (mSidecar == null || !mSidecar.isEnrolling()) {Log.d(TAG, "Enrollment not started yet");return;}int progress = getProgress(mSidecar.getEnrollmentSteps(), mSidecar.getEnrollmentRemaining());Log.d(TAG, "--updateProgress--" + progress);
//        if (animate) {animateProgress(progress);
//        } else {if (mProgressBar != null) {mProgressBar.setProgress(progress);}if (progress >= PROGRESS_BAR_MAX) {mDelayedFinishRunnable.run();}
//        }}private int getProgress(int steps, int remaining) {if (steps == -1) {return 0;}int progress = Math.max(0, steps + 1 - remaining);return PROGRESS_BAR_MAX * progress / (steps + 1);}private void showError(CharSequence error) {if (mCanAssumeUdfps) {setHeaderText(error);setDescriptionText("");} else {mErrorText.setText(error);if (mErrorText.getVisibility() == View.INVISIBLE) {mErrorText.setVisibility(View.VISIBLE);mErrorText.setTranslationY(getResources().getDimensionPixelSize(R.dimen.fingerprint_error_text_appear_distance));mErrorText.setAlpha(0f);mErrorText.animate().alpha(1f).translationY(0f).setDuration(200).setInterpolator(mLinearOutSlowInInterpolator).start();} else {mErrorText.animate().cancel();mErrorText.setAlpha(1f);mErrorText.setTranslationY(0f);}}if (isResumed() && mIsAccessibilityEnabled && !mCanAssumeUdfps) {mVibrator.vibrate(Process.myUid(), getApplicationContext().getOpPackageName(),VIBRATE_EFFECT_ERROR, getClass().getSimpleName() + "::showError",FINGERPRINT_ENROLLING_SONFICATION_ATTRIBUTES);}}private void clearError() {if (!mCanAssumeUdfps && mErrorText.getVisibility() == View.VISIBLE) {mErrorText.animate().alpha(0f).translationY(getResources().getDimensionPixelSize(R.dimen.fingerprint_error_text_disappear_distance)).setDuration(100).setInterpolator(mFastOutLinearInInterpolator).withEndAction(() -> mErrorText.setVisibility(View.INVISIBLE)).start();}}private void listenOrientationEvent() {mOrientationEventListener = new OrientationEventListener(this) {@Overridepublic void onOrientationChanged(int orientation) {final int currentRotation = getDisplay().getRotation();if ((mPreviousRotation == Surface.ROTATION_90 && currentRotation == Surface.ROTATION_270) || (mPreviousRotation == Surface.ROTATION_270 && currentRotation == Surface.ROTATION_90)) {mPreviousRotation = currentRotation;recreate();}}};mOrientationEventListener.enable();mPreviousRotation = getDisplay().getRotation();}private void stopListenOrientationEvent() {if (mOrientationEventListener != null) {mOrientationEventListener.disable();}mOrientationEventListener = null;}private final Animator.AnimatorListener mProgressAnimationListener = new Animator.AnimatorListener() {@Overridepublic void onAnimationStart(Animator animation) { }@Overridepublic void onAnimationRepeat(Animator animation) { }@Overridepublic void onAnimationEnd(Animator animation) {if (mProgressBar.getProgress() >= PROGRESS_BAR_MAX) {mProgressBar.postDelayed(mDelayedFinishRunnable, getFinishDelay());}}@Overridepublic void onAnimationCancel(Animator animation) { }};private long getFinishDelay() {return mCanAssumeUdfps ? 400L : 250L;}private final Runnable mDelayedFinishRunnable = new Runnable() {@Overridepublic void run() {launchFinish(mToken);}};//    private final Runnable mDelayedSendCmd = new Runnable() {
//        @Override
//        public void run() {
//        	 Log.d(TAG, "--mDelayedSendCmd--" );
//        	 mGoodixFingerprintManager.testCmd(ShenzhenConstants.CMD_TEST_SZ_FINGER_DOWN);
//        }
//    };private final Animatable2.AnimationCallback mIconAnimationCallback = new Animatable2.AnimationCallback() {@Overridepublic void onAnimationEnd(Drawable d) {if (mAnimationCancelled) {return;}mProgressBar.post(new Runnable() {@Overridepublic void run() {startIconAnimation();}});}};private final Runnable mTouchAgainRunnable = new Runnable() {@Overridepublic void run() {showError(getString(R.string.security_settings_fingerprint_enroll_lift_touch_again));}};@Overridepublic int getMetricsCategory() {return SettingsEnums.FINGERPRINT_ENROLLING;}private void updateOrientation(int orientation) {switch(orientation) {case Configuration.ORIENTATION_LANDSCAPE: {mIllustrationLottie = null;break;}case Configuration.ORIENTATION_PORTRAIT: {if (mShouldShowLottie) {mIllustrationLottie = findViewById(R.id.illustration_lottie);}break;}}}@Overridepublic void onConfigurationChanged(@NonNull Configuration newConfig) {switch(newConfig.orientation) {case Configuration.ORIENTATION_LANDSCAPE: {updateOrientation(Configuration.ORIENTATION_LANDSCAPE);break;}case Configuration.ORIENTATION_PORTRAIT: {updateOrientation(Configuration.ORIENTATION_PORTRAIT);break;}}}
}

基本上不用怎么修改。

3, 最重要的是在System UI 里, 下面详细的介绍。

首先在SystemUI里加入汇顶的 库 GoodixFingerprintManager , 在bp文件里添加

vendor/mediatek/proprietary/packages/apps/SystemUI/Android.bp// add yk
android_library_import {name: "mtkgf_manager_lib",aars: ["libs/gf_manager_lib.aar"],
}
// end

AndroidManifest.xml 里要修改下, 不然编译会报错,replace标签里添加label , vendor/mediatek/proprietary/packages/apps/SystemUI/AndroidManifest.xml

 tools:replace="android:label,android:appComponentFactory"

编译成功后,在 vendor/mediatek/proprietary/packages/apps/SystemUI/src/com/android/systemui/biometrics/AuthController.java 初始化 GoodixFingerprintManager 

 mGoodixFingerprintManager = GoodixFingerprintManager.getFingerprintManager(mContext); // add 

 mGoodixFingerprint.showSensorViewWindow(true); 显示汇顶的指纹解锁的窗口

  mGoodixFingerprint.setHBMMode(true); 显示高亮

汇顶的人员建议不要调用他们的来实现, 为此, 我就反编译他们的做了一个,反编译的代码后面贴出。

vendor/mediatek/proprietary/packages/apps/SystemUI/src/com/android/systemui/biometrics/UdfpsController.java 这个是核心类,

这个类里主要作用是工厂方法模式实现显示录指纹,解锁等不同的UI ,

    fun inflateUdfpsAnimation(view: UdfpsView, controller: UdfpsController): UdfpsAnimationViewController<*>? {return when (requestReason) {REASON_ENROLL_FIND_SENSOR,REASON_ENROLL_ENROLLING -> {Log.i("zgyFp", " REASON_ENROLL_ENROLLING  ")null/*  UdfpsEnrollViewController(view.addUdfpsView(R.layout.udfps_enroll_view) {},enrollHelper ?: throw IllegalStateException("no enrollment helper"),statusBarStateController,panelExpansionStateManager,dialogManager,dumpManager,overlayParams.scaleFactor) */}BiometricOverlayConstants.REASON_AUTH_KEYGUARD -> {Log.i("zgyFp", " REASON_AUTH_KEYGUARD  ")UdfpsKeyguardViewController(view.addUdfpsView(R.layout.udfps_keyguard_view),statusBarStateController, panelExpansionStateManager,statusBarKeyguardViewManager, keyguardUpdateMonitor, dumpManager, transitionController,configurationController, systemClock, keyguardStateController, unlockedScreenOffAnimationController,dialogManager, controller, activityLaunchAnimator)}BiometricOverlayConstants.REASON_AUTH_BP -> {UdfpsBpViewController(view.addUdfpsView(R.layout.udfps_bp_view), statusBarStateController, panelExpansionStateManager, dialogManager, dumpManager)}BiometricOverlayConstants.REASON_AUTH_OTHER,BiometricOverlayConstants.REASON_AUTH_SETTINGS -> {UdfpsFpmOtherViewController(view.addUdfpsView(R.layout.udfps_fpm_other_view), statusBarStateController, panelExpansionStateManager, dialogManager, dumpManager)}else -> {Log.e(TAG, "Animation for reason $requestReason not supported yet")null}}}

完成后的解锁视频

完成后的视频

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/309344.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

<计算机网络自顶向下> TCPUDP套接字编程

应用实现&#xff1a;源端的应用进程交换报文实现应用协议&#xff0c;来实现各种各样的网络应用&#xff08;dash&#xff0c;email, etc&#xff09; 而应用层通信不可以直接通信&#xff0c;需要借助下层的服务才可以进行&#xff0c;通过层间接口交给下层&#xff0c;通过…

系统架构最佳实践 -- 金融企业的资损防控

一、资损产生的原因 由于支付行业的特殊性与复杂性&#xff08;主要处理资金相关业务&#xff09;&#xff0c;支付公司处于资损的风口浪尖&#xff0c;最容易发生资损&#xff0c;可以说资损风险无处不在。 常规来说&#xff0c;资损原因主要可以分为以下三类&#xff1a; 1…

【MATLAB源码-第49期】基于蚁群算法(ACO)算法的栅格路径规划,输出最佳路径图和算法收敛曲线图。

操作环境&#xff1a; MATLAB 2022a 1、算法描述 蚁群算法是一种模拟自然界蚂蚁觅食行为的启发式优化算法。在蚁群系统中&#xff0c;通过模拟蚂蚁之间通过信息素沟通的方式来寻找最短路径。 在栅格路径规划中&#xff0c;蚁群算法的基本步骤如下&#xff1a; 1. 初始化: …

Notepad++软件安装及配置说明

Notepad是 Windows操作系统下的一套文本编辑器&#xff0c;有完整的中文化接口及支持多国语言编写的功能。 Notepad功能比 Windows自带记事本强大&#xff0c;除了可以用来制作一般的纯文字说明文件&#xff0c;也十分适合编写计算机程序代码。Notepad不但可以显示行号&#xf…

鸿蒙开发快速入门

基本概念 ArkTS 因为ArkTS是基于Type Script扩展而来&#xff0c;是Type Script的超集&#xff0c;所以也可以关注一下Type Script的语法来理解ArkTS的语法 ArkUI HarmonyOS提供了一套UI开发框架&#xff0c;即方舟开发框架&#xff08;ArkUI框架&#xff09;。方舟开发框架…

对常见FTP客户端/服务器的调查与分析

前言 主要是想看看常见的服务器和客户端是如何实现协议中要求的功能的&#xff0c;。 比如RF959要求的记录结构&#xff08;Record Structure&#xff09;、页结构&#xff08;Page Structure&#xff09;、Block Mode、Compress Mode&#xff0c;看起来就很抽象。 实测发现…

给自己的机器人部件安装单目摄像头并实现gazebo仿真功能

手术执行器添加摄像头 手术执行器文件夹surgical_new内容展示如何添加单目摄像头下载现成的机器人环境文件启动仿真环境 手术执行器文件夹surgical_new内容展示 进入src文件夹下选择进入vision_obliquity文件夹 选择launch 有两个可用gazebo中rviz展示的launch文件&#xff0…

Unity 2D让相机跟随角色移动

相机跟随移动 最简单的方式通过插件Cinemachine 在窗口/包管理器选择全部找到Cinemachine&#xff0c;导入。然后在游戏对象/Cinemachine创建2D Camera。此时层级中创建一个2D相机。选中人物拖入检查器Follow。此时相机跟随人物移动。 修改相机视口距离 在检查器中Lens下调正…

c++11 标准模板(STL)本地化库 - 平面类别(std::codecvt) - 在字符编码间转换,包括 UTF-8、UTF-16、UTF-32 (四)

本地化库 本地环境设施包含字符分类和字符串校对、数值、货币及日期/时间格式化和分析&#xff0c;以及消息取得的国际化支持。本地环境设置控制流 I/O 、正则表达式库和 C 标准库的其他组件的行为。 平面类别 在字符编码间转换&#xff0c;包括 UTF-8、UTF-16、UTF-32 std::…

MES生产管理系统:私有云、公有云与本地化部署的比较分析

随着信息技术的迅猛发展&#xff0c;云计算作为一种新兴的技术服务模式&#xff0c;已经深入渗透到企业的日常运营中。在众多部署方式中&#xff0c;私有云、公有云和本地化部署是三种最为常见的选择。它们各自具有独特的特点和适用场景&#xff0c;并在不同程度上影响着企业的…

python应用-os库操作目录

python自带的os模块提供了许多与操作系统交互的函数&#xff0c;适配多种操作系统&#xff0c;比如windows&#xff0c;mac&#xff0c;linux等&#xff0c;比如常用路径操作、进程管理、环境参数等都可通过os模块实现。 以下是自带的os.py中的前面一部分代码。 第一个红框中主…

kibana源码编译

一、安装nodejs16.14.2及yarn &#xff08;一&#xff09;nodejs 1、下载 https://cdn.npmmirror.com/binaries/node/v16.14.2/node-v16.14.2-linux-x64.tar.gz2、解压 tar -zxf node-v16.14.2-linux-x64.tar.gz -C /app cd /app mv node-v16.14.2-linux-x64 node3、配置环…

bugku-web-decrypt

这里的提示解密后没有什么意义 这里下载文件包 得到一个index.php文件 得到代码 <?php function encrypt($data,$key) {$key md5(ISCC);$x 0;$len strlen($data);$klen strlen($key);for ($i0; $i < $len; $i) { if ($x $klen){$x 0;}$char . $key[$x];$x1;}for…

UI设计/交互设计/视觉设计项目汇报/作品集Figma/PPT模板

作为UI设计/交互设计/视觉设计师&#xff0c;创建作品集对于向潜在客户或雇主展示您的技能、创造力和风格至关重要。以下分步指南可帮助您创建令人印象深刻的作品集&#xff1a; 选择您的最佳作品&#xff1a;选择您最强大且最相关的设计项目&#xff0c;将其纳入您的作品集。…

stm32移植嵌入式数据库FlashDB

本次实验的程序链接stm32f103FlashDB嵌入式数据库程序资源-CSDN文库 一、介绍 FlashDB 是一款超轻量级的嵌入式数据库&#xff0c;专注于提供嵌入式产品的数据存储方案。与传统的基于文件系统的数据库不同&#xff0c;FlashDB 结合了 Flash 的特性&#xff0c;具有较强的性能…

codeforce #925 (div3) 题解

D. Divisible Pairs 给出数组 a a a&#xff0c;如果二元组 ( i , j ) (i,j) (i,j)满足 a i a j m o d x 0 & & a i − a j m o d y 0 a_i a_j mod x 0 \&\& a_i - a_j mod y 0 ai​aj​modx0&&ai​−aj​mody0&#xff0c;则beauty。其中 i &…

HarmonyOS鸿蒙端云一体化开发--适合小白体制

端云一体化 什么是“端”&#xff0c;什么是“云”&#xff1f; 答&#xff1a;“端“&#xff1a;手机APP端 “云”:后端服务端 什么是端云一体化&#xff1f; 端云一体化开发支持开发者在 DevEco Studio 内使用一种语言同时完成 HarmonyOS 应用的端侧与云侧开发。 …

《经典论文阅读1》YouTubeDNN—基于深度学习的搜推系统开山之作

论文链接&#xff1a; https://static.googleusercontent.com/media/research.google.com/zh-CN//pubs/archive/45530.pdf全文由『说文科技』原创出品。版权所有&#xff0c;翻版必究。 这篇发表于2016年九月的文章&#xff0c;在搜索推荐仍然基于矩阵分解的时代&#xff0c;抛…

python基础——类型注解【变量,函数,Union】

&#x1f4dd;前言&#xff1a; 上一篇文章Python基础——面相对象的三大特征提到&#xff0c;python中的多态&#xff0c;python中&#xff0c;类型是动态的&#xff0c;这意味着我们不需要在声明变量时指定其类型。然而&#xff0c;这可能导致运行时错误&#xff0c;因为我们…