有时锁屏不显示android

时间:2012-04-13 06:07:41

标签: android

我创建了锁屏应用程序..有时它会给我一个问题。问题是有些时候默认锁定屏幕显示而不是我的锁定屏幕和一些时间直接主屏幕显示。我不知道问题出在哪里。请给我一些建议。

LockScreenActivity: 使用

KeyguardManager keyguardManager = (KeyguardManager) getSystemService(Activity.KEYGUARD_SERVICE); 
KeyguardLock lock = keyguardManager.newKeyguardLock(KEYGUARD_SERVICE); 
lock.disableKeyguard(); 

并创建ScreenReceiver:

ACTION_SCREEN_OFF
ACTION_SCREEN_ON
ACTION_BOOT_COMPLETED

请参阅此链接:http://thinkandroid.wordpress.com/2010/01/24/handling-screen-off-and-screen-on-intents/

在manifestast文件中

:声明服务和接收者以及权限

时,问题出在BroadcastReceiver上
if (recievedIntent.getAction().equals(Intent.ACTION_SCREEN_OFF)) {
    //call activity
}else if (recievedIntent.getAction().equals(Intent.ACTION_SCREEN_ON)) {
}

但是活动在屏幕之后调用..所以缺少什么或者什么是问题..为什么它很高兴pl rply。

嗨,这是我的代码:

public class myReceiver extends BroadcastReceiver {
    public static boolean wasScreenOn = true;

    @Override
    public void onReceive(final Context context, Intent recievedIntent) {

        if (recievedIntent.getAction().equals(Intent.ACTION_SCREEN_OFF)) {
            wasScreenOn = false;

            Intent intent = new Intent(context,
                    myActivity.class);
            intent.setAction(Intent.ACTION_MAIN);
            intent.setFlags(Intent.FLAG_ACTIVITY_NO_USER_ACTION);
            intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
            intent.setFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
            intent.setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
                    context.startActivity(intent
                    .addFlags(Intent.FLAG_ACTIVITY_NEW_TASK));

        } else if (recievedIntent.getAction().equals(Intent.ACTION_SCREEN_ON)) {
            wasScreenOn = true;
        }
    }
}

当呼叫操作屏幕时,活动正在呼叫。

0 个答案:

没有答案