Android Forums

Go Back   Android Forums > Android Coders > Android Development, Answers, Tutorials, and Code Snippets
Connect with Facebook

Click Here To Register!
Reply
 
LinkBack Thread Tools Display Modes
Old 08-30-2010, 05:42 PM   #1
New Member
 
Join Date: Aug 2010
Posts: 1
Friends: 0
View somethingjava's Profile   View somethingjava's Photo Album   View somethingjava's Blog   View Social Groups
I'm trying to create an app and I'm nearly complete. I have been trying to figure out how to either put the phone into sleep mode, which would also lock the screen or just lock the screen.

This is how I am currently trying to accomplish this using the PowerManager.

Code:
    	try{
	    	PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE);
	    	PowerManager.WakeLock wl = pm.newWakeLock(PowerManager.SCREEN_DIM_WAKE_LOCK | PowerManager.ON_AFTER_RELEASE, "FACEDOWN_LOCK");
	    	wl.acquire();
	    		// ? Perform operations
	    		pm.goToSleep(SystemClock.uptimeMillis());
	    	wl.release();
    	}catch(Exception e){
    		 Toast.makeText(this, e.getMessage() , 10000).show();
    	}
This does NOT work. It gives me permission problems even though my app is signed and I have the permissions enabled in the manifest.xml

Code:
    <permission android:name="android.permission.WAKE_LOCK" />
    <permission android:name="android.permission.DEVICE_POWER" />
	<uses-permission android:name="android.permission.WAKE_LOCK" /> 
	<uses-permission android:name="android.permission.DEVICE_POWER" />
Is there a proper way to do this? Can it even be done? Any help would be awesome. I've spent a better part of 8 hours in research alone and I have not been able to find any solution as to how you get the phone to lock or go to sleep.


Thanks,
Marco
somethingjava is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati
Reply With Quote
Reply

Thread Tools
Display Modes



Similar Threads
Thread Thread Starter Forum Replies Last Post
Lock screen irish1136 Droid Eris 1 05-30-2010 03:35 PM
Removing Lock Screen? grimlock Android Chat 2 02-11-2010 01:48 AM
Issues with the 'lock screen'. Khanstruct Droid Eris 4 12-06-2009 05:11 PM
How to lock screen during call on G1? Bige311 Android Chat 2 01-15-2009 12:59 PM
How to lock screen during call? Bige311 Android Chat 0 01-09-2009 11:31 PM


Unlocked G1 Phones | Buy T-Mobile G1 | Google Phone

All times are GMT -6. The time now is 08:28 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.
Copyright (c) 2008 TalkAndroid.com. All rights reserved.