Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/204.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java Android应用程序锁库_Java_Android - Fatal编程技术网

Java Android应用程序锁库

Java Android应用程序锁库,java,android,Java,Android,我正在尝试在我的一个android应用程序中添加applock库。我希望在打开ShowContentActivity活动之前使用锁将其保护。我找到了一个很好的图书馆 我的ShowContentActivity的java代码如下所示 public void showContent(View view) { Intent intent = new Intent(LockActivity.this, ShowContentActivity.class); startActiv

我正在尝试在我的一个android应用程序中添加applock库。我希望在打开ShowContentActivity活动之前使用锁将其保护。我找到了一个很好的图书馆

我的ShowContentActivity的java代码如下所示

public void showContent(View view) {

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

    }

}
我已经按照图书馆页面上的说明执行了它。但我很困惑,无法使用。任何人请建议我如何创建锁并在打开活动前始终使用它

谢谢

我的全班同学如下

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);
        }




}
今天早上我看到了你的博客,并在那里回应了这一点(但我将在这里详细介绍一下):

首先,提示用户在尝试锁定活动之前创建密码。如果他们没有创建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();
锁定后,只需在showContent(View)方法的检查对话框中包装您的意图:

以上内容直接摘自该网站主页上的自述。如果您想更深入地了解详细信息,例如扩展LockableCompative活动以适应您的应用程序的体系结构。

我今天早上看到了您的应用程序,并对此作出了回应(但我将在这里更详细地介绍):

首先,提示用户在尝试锁定活动之前创建密码。如果他们没有创建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();
锁定后,只需在showContent(View)方法的检查对话框中包装您的意图:


以上内容直接摘自该网站主页上的自述。如果你想更深入地了解细节,比如扩展LockableCompative活动以适应你的应用程序的体系结构。

你是否在
onCreate
中添加方法。请添加更多code@W4R10CK我不是在onCreate上添加它…**showContent**是按钮,我想锁定它…谢谢你可以添加此方法的更多代码或整个类的代码。@W4R10CK我已经添加了完整类…谢谢你调用
showContent
方法的地方。?你是在
onCreate
中添加方法吗。请添加更多code@W4R10CK我不是在onCreate上添加它…**showContent**是按钮,我想锁定它…谢谢你添加这个方法的更多代码或整个类的代码。@W4R10CK我已经添加了完整类…谢谢你调用
showContent
method。?!谢谢,它解决了我的问题…但有时应用程序不显示锁定活动,直接进入下一个活动,应该只在解锁后打开。我已经在GitHub的Libray中发布了代码…请检查并让我知道其中是否还有任何问题。在此期间,我没有收到任何错误。默认解锁持续时间为15分钟。如果要在每次暂停活动时锁定它(即使屏幕刚刚关闭十分之一秒),则需要覆盖
R.integer.pin\u default\u Activity\u lock\u reenable\u minutes
,并将值设置为0!谢谢,它解决了我的问题…但有时应用程序不显示锁定活动,直接进入下一个活动,应该只在解锁后打开。我已经在GitHub的Libray中发布了代码…请检查并让我知道其中是否还有任何问题。在此期间,我没有收到任何错误。默认解锁持续时间为15分钟。如果希望在每次暂停活动时锁定它(即使屏幕刚刚关闭十分之一秒),则需要覆盖
R.integer.pin\u default\u Activity\u lock\u reenable\u minutes
,并将值设置为0