Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
public class lock extends DeviceAdminReceiver {

    public static class Controller extends Activity {

        DevicePolicyManager mDPM;
        ComponentName mDeviceAdminSample;

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

            mDPM = (DevicePolicyManager)getSystemService(Context.DEVICE_POLICY_SERVICE);
            mDeviceAdminSample = new ComponentName(Controller.this,
                lock.class);
            boolean active = mDPM.isAdminActive(mDeviceAdminSample);
            if (active) 
            {
                mDPM.lockNow();
            }
        }
    }
}

and I am facing error is:

1.04-11 18:25:50.918: ERROR/AndroidRuntime(860): java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.lock/com.lock.lock.Controller}: java.lang.ClassNotFoundException: com.lock.lock.Controller in loader 
dalvik.system.PathClassLoader[/data/app/com.lock-1.apk]

04-11 18:25:50.918: ERROR/AndroidRuntime(860):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2585)
04-11 18:25:50.918: ERROR/AndroidRuntime(860):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679)
04-11 18:25:50.918: ERROR/AndroidRuntime(860):     at android.app.ActivityThread.access$2300(ActivityThread.java:125)
04-11 18:25:50.918: ERROR/AndroidRuntime(860):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2033)
04-11 18:25:50.918: ERROR/AndroidRuntime(860):     at android.os.Handler.dispatchMessage(Handler.java:99)
04-11 18:25:50.918: ERROR/AndroidRuntime(860):     at android.os.Looper.loop(Looper.java:123)
04-11 18:25:50.918: ERROR/AndroidRuntime(860):     at android.app.ActivityThread.main(ActivityThread.java:4627)
04-11 18:25:50.918: ERROR/AndroidRuntime(860):     at java.lang.reflect.Method.invokeNative(Native Method)
04-11 18:25:50.918: ERROR/AndroidRuntime(860):     at java.lang.reflect.Method.invoke(Method.java:521)
04-11 18:25:50.918: ERROR/AndroidRuntime(860):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
04-11 18:25:50.918: ERROR/AndroidRuntime(860):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
04-11 18:25:50.918: ERROR/AndroidRuntime(860):     at dalvik.system.NativeStart.main(Native Method)
04-11 18:25:50.918: ERROR/AndroidRuntime(860): Caused by: java.lang.ClassNotFoundException: com.lock.lock.Controller in loader dalvik.system.PathClassLoader[/data/app/com.lock-1.apk]
04-11 18:25:50.918: ERROR/AndroidRuntime(860):     at dalvik.system.PathClassLoader.findClass(PathClassLoader.java:243)
04-11 18:25:50.918: ERROR/AndroidRuntime(860):     at java.lang.ClassLoader.loadClass(ClassLoader.java:573)
04-11 18:25:50.918: ERROR/AndroidRuntime(860):     at java.lang.ClassLoader.loadClass(ClassLoader.java:532)
04-11 18:25:50.918: ERROR/AndroidRuntime(860):     at android.app.Instrumentation.newActivity(Instrumentation.java:1021)
04-11 18:25:50.918: ERROR/AndroidRuntime(860):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2577)
04-11 18:25:50.918: ERROR/AndroidRuntime(860):     ... 11 more
share|improve this question
Why there is DeviceAdminReceiver class as super class in your code?Because you AndroidManifest.xml will not Able to find your Activity Class. – Herry Apr 13 '12 at 13:39
<activity android:name=".lock.Controller" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> – user1329253 Apr 13 '12 at 13:47

1 Answer

KeyguardManager mgr = (KeyguardManager) getContext().getSystemService(Activity.KEYGUARD_SERVICE); 
KeyguardLock lock = mgr.newKeyguardLock(KEYGUARD_SERVICE); 
lock.reenableKeyguard();

And you need the appropriate permissions.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.