android Programming Glossary: intent.action_user_present
Intent.ACTION_USER_PRESENT not received on HoneyComb or ICS (Samsung) devices http://stackoverflow.com/questions/10329810/intent-action-user-present-not-received-on-honeycomb-or-ics-samsung-devices not received on HoneyComb or ICS Samsung devices I have a BackgroundReceiver set up to receive the android.intent.action.USER_PRESENT.. Context Intent method is very simple @Override public void onReceive Context context Intent intent if intent null if Intent.ACTION_USER_PRESENT.equals intent.getAction wrapper for Log.d String String Dbug.log MyBroadcastReceiver intent.getAction this calls a service..
Android ICS native lockscreen http://stackoverflow.com/questions/10800683/android-ics-native-lockscreen with a BroadCaseReciever on these events Intent.ACTION_SCREEN_ON Intent.ACTION_SCREEN_OFF Intent.ACTION_USER_PRESENT My problem is that i want my activity to be shown with the lockscreen not replacing it. Do you guys know how to achieve..
Bring task to front on android.intent.action.USER_PRESENT http://stackoverflow.com/questions/8750854/bring-task-to-front-on-android-intent-action-user-present Context context Intent intent Class extends Activity activityClass activity_A.class if intent.getAction .equals Intent.ACTION_USER_PRESENT activityClass BringToFront.class Intent i new Intent context activityClass i.addFlags Intent.FLAG_ACTIVITY_NEW_TASK context.startActivity..
Activity handle when screen unlocked http://stackoverflow.com/questions/9747564/activity-handle-when-screen-unlocked name android.intent.action.SCREEN_ON action android name android.intent.action.SCREEN_OFF action android name android.Intent.ACTION_USER_PRESENT intent filter receiver In Activity or Service try IntentFilter filter new IntentFilter Intent.ACTION_SCREEN_ON filter.addAction.. filter new IntentFilter Intent.ACTION_SCREEN_ON filter.addAction Intent.ACTION_SCREEN_OFF filter.addAction Intent.ACTION_USER_PRESENT BroadcastReceiver mReceiver new receiverScreen registerReceiver mReceiver filter catch Exception e receiver code where..
android app with service only http://stackoverflow.com/questions/990217/android-app-with-service-only
|