“锁定屏幕”,带有自定义安全密码

时间:2012-03-03 18:33:03

标签: android lockscreen

我已经查看了很多类似的问题,并且我发现将锁定屏幕作为标准的android锁屏是。可能的做法是创建一个禁用LockScreen的应用程序,并使用不同的“锁定”而不是标准的“锁定”。我正在考虑使用不同类型的锁来制作自定义锁屏。我不知道的可能是:

  1. 是否有任何方法可以使用锁屏的.xml布局
  2. 我可以像普通的应用程序一样把它写成
  3. 我不想要对市场上的现有应用程序进行裁决。

2 个答案:

答案 0 :(得分:1)

我相信你是对的,因为我也找不到替换原来锁屏的方法。正如你所说,我们可以禁用原件并假冒另一件。

我有一个概念,你也可以找到这个页面:http://chandan-tech.blogspot.com/2010/10/handling-screen-lock-unlock-in-android.html

您禁用原始内容,向ACTION_SCREEN_ON添加一个侦听器,一旦触发,显示您的假锁屏,从现在开始您可以像普通应用程序一样编写它,我相信xml布局是完全实用的。

要实际实现它,还应该创建一个服务,并且必须在系统启动时运行。在您的活动中,您还应该禁用通知栏和按钮。

答案 1 :(得分:0)

您可以尝试覆盖KeyguardManager

KeyguardManager.KeyguardLock key;
KeyguardManager km=(KeyguardManager)getSystemService(KEYGUARD_SERVICE);
//depreciated
key=km.newKeyguardLock("IN");

您必须将其插入服务中。请执行以下操作:

public class LockService extends Service{
BroadcastReceiver receiver;
@override
@SuppressWarnings("deprecation")
public void onCreate(){
KeyguardManager.KeyguardLock key;
KeyguardManager km=(KeyguardManager)getSystemService(KEYGUARD_SERVICE);
//depreciated
key=km.newKeyguardLock("IN");
IntentFilter filter=new IntentFilter(Intent.ACTION_SCREEN_ON);
filter.addAction(Intent.ACTION_SCREEN_OFF);
filter.addAction(Intent.ACTION_BOOT_COMPLETED);
receiver=new LockscreenReceiver();
registerReceiver(receiver,filter);
super.onCreate();
}

然后在LockscreenReceiver上,您必须实现此操作:

public class LockscreenReceiver extends BroadcastReceiver{
@Override
public void onReceive(Context context,Intent intent){
String action=intent.getAction();
//if the screen was recently enabled, do this:
//If the screen was just turned on or it just booted up, start your Lock Activity
        if(action.equals(Intent.ACTION_SCREEN_OFF) || action.equals(Intent.ACTION_BOOT_COMPLETED))
        {
            Intent i = new Intent(context, MainActivity.class);
            i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            context.startActivity(i);
        }
}
}

之后,您必须在MainActivity中注册或致电服务

startService(new Intent(this,LockscreenService.class));

要查看此操作,请转到https://github.com/thomasvidas/Simple-Lockscreen