java - Android 应用锁库

标签 java android

我正在尝试在我的 Android 应用程序之一中添加 applock 库。我想在打开 ShowContentActivity Activity 之前先用锁保护它。我找到了很好的图书馆here

我的 ShowContentActivity 的 java 代码现在如下所示。

public void showContent(View view) {

        Intent intent = new Intent(LockActivity.this, ShowContentActivity.class);
    startActivity(intent);

    }

}

我已按照库页面中的说明来实现它。但我很困惑,无法使用。有人请建议我如何创建锁并在打开我的 Activity 之前始终使用它?

谢谢

我的完整类(class)如下

public class LockActivity extends AppCompatActivity {
/**
 * Whether or not the system UI should be auto-hidden after
 * {@link #AUTO_HIDE_DELAY_MILLIS} milliseconds.
 */
private static final boolean AUTO_HIDE = true;

/**
 * If {@link #AUTO_HIDE} is set, the number of milliseconds to wait after
 * user interaction before hiding the system UI.
 */
private static final int AUTO_HIDE_DELAY_MILLIS = 3000;

/**
 * Some older devices needs a small delay between UI widget updates
 * and a change of the status and navigation bar.
 */
private static final int UI_ANIMATION_DELAY = 300;
private final Handler mHideHandler = new Handler();
private View mContentView;
private final Runnable mHidePart2Runnable = new Runnable() {
    @SuppressLint("InlinedApi")
    @Override
    public void run() {
        // Delayed removal of status and navigation bar

        // Note that some of these constants are new as of API 16 (Jelly Bean)
        // and API 19 (KitKat). It is safe to use them, as they are inlined
        // at compile-time and do nothing on earlier devices.
        mContentView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LOW_PROFILE
                | View.SYSTEM_UI_FLAG_FULLSCREEN
                | View.SYSTEM_UI_FLAG_LAYOUT_STABLE
                | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
                | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
                | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);
    }
};
private View mControlsView;
private final Runnable mShowPart2Runnable = new Runnable() {
    @Override
    public void run() {
        // Delayed display of UI elements
        ActionBar actionBar = getSupportActionBar();
        if (actionBar != null) {
            actionBar.show();
        }
        mControlsView.setVisibility(View.VISIBLE);
    }
};
private boolean mVisible;
private final Runnable mHideRunnable = new Runnable() {
    @Override
    public void run() {
        hide();
    }
};
/**
 * Touch listener to use for in-layout UI controls to delay hiding the
 * system UI. This is to prevent the jarring behavior of controls going away
 * while interacting with activity UI.
 */
private final View.OnTouchListener mDelayHideTouchListener = new View.OnTouchListener() {
    @Override
    public boolean onTouch(View view, MotionEvent motionEvent) {
        if (AUTO_HIDE) {
            delayedHide(AUTO_HIDE_DELAY_MILLIS);
        }
        return false;
    }
};

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.activity_lock);

    mVisible = true;
    mControlsView = findViewById(R.id.fullscreen_content_controls);
    mContentView = findViewById(R.id.fullscreen_content);


    // Set up the user interaction to manually show or hide the system UI.
    mContentView.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            toggle();
        }
    });

    // Upon interacting with UI controls, delay any scheduled hide()
    // operations to prevent the jarring behavior of controls going away
    // while interacting with the UI.
    findViewById(R.id.unlock).setOnTouchListener(mDelayHideTouchListener);
}

@Override
protected void onPostCreate(Bundle savedInstanceState) {
    super.onPostCreate(savedInstanceState);

    // Trigger the initial hide() shortly after the activity has been
    // created, to briefly hint to the user that UI controls
    // are available.
    delayedHide(100);
}

private void toggle() {
    if (mVisible) {
        hide();
    } else {
        show();
    }
}

private void hide() {
    // Hide UI first
    ActionBar actionBar = getSupportActionBar();
    if (actionBar != null) {
        actionBar.hide();
    }
    mControlsView.setVisibility(View.GONE);
    mVisible = false;

    // Schedule a runnable to remove the status and navigation bar after a delay
    mHideHandler.removeCallbacks(mShowPart2Runnable);
    mHideHandler.postDelayed(mHidePart2Runnable, UI_ANIMATION_DELAY);
}

@SuppressLint("InlinedApi")
private void show() {
    // Show the system bar
    mContentView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
            | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
    mVisible = true;

    // Schedule a runnable to display UI elements after a delay
    mHideHandler.removeCallbacks(mHidePart2Runnable);
    mHideHandler.postDelayed(mShowPart2Runnable, UI_ANIMATION_DELAY);
}

/**
 * Schedules a call to hide() in [delay] milliseconds, canceling any
 * previously scheduled calls.
 */
private void delayedHide(int delayMillis) {
    mHideHandler.removeCallbacks(mHideRunnable);
    mHideHandler.postDelayed(mHideRunnable, delayMillis);
}

public void showContent(View view) {


            Intent intent = new Intent(LockActivity.this, ShowContentActivity.class);
            startActivity(intent);
        }




}

最佳答案

我看到你的issue今天早上并对此做出了回应(但我将在这里进行更详细的介绍):

首先,在尝试锁定 Activity 之前提示用户创建密码。如果他们还没有创建 PIN,那么他们就无法解锁:

new CreateLockDialogBuilder(Activity, 
    new LockCreationListener(){
        public void onLockCanceled(){ } // Dialog was closed without entry
        public void onLockSuccessful(){
            // They've created a PIN, so now you can use the unlocking mechanisms
            doSomethingOnAppLocked();
        }
    })
    .show();

锁定后,只需将您的 Intent 包装在 showContent(View) 方法内的检查对话框中即可:

ActionLockingHelper.unlockIfRequired(Activity, new UnlockEventListener(){
    public void onCanceled(){ } // Dialog was closed without entry
    public void onUnlockFailed(String reason){ } // Not called with default Dialog, instead is handled internally
    public void onUnlockSuccessful(){
        Intent intent = new Intent(LockActivity.this, ShowContentActivity.class);
        startActivity(intent);
    }
});

以上内容直接取自 repo 主页上的自述文件。如果您想进一步了解细节,还有更多内容,例如扩展 LockableCompatActivity 以适应您的应用架构。

关于java - Android 应用锁库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39517374/

相关文章:

java - 如何从 ExoPlayer 中的 HLS 流中提取定时 ID3 元数据?

android - 如何使用 Android Studio 从 android 项目中删除依赖项

android - 在代码中选择findViewById(R.id.xxx)的资源

android - 如何为 RangeSlider(valueFrom 和 valueTo)使用 Databinding 和 LiveData

java - Android 4.0、4.5 和 5.0 设备的不同布局

java - 如何从gitlab中删除文件夹

java - 将servlet重定向到jsp

java - 带有可选参数的 REST GET API - 设计和实现

java - 获取 JAXBElement 列表,我想要预定义的 java 对象列表

java - 如何在 CompletableFutures 中收集成功和错误?