android Programming Glossary: onreceive
Sending and Receiving SMS and MMS in Android (pre Kit Kat Android 4.4) http://stackoverflow.com/questions/14452808/sending-and-receiving-sms-and-mms-in-android-pre-kit-kat-android-4-4 the AndroidMainfest.xml file. Then I had to override the onReceive method of the BroadcastReceiver . I have included examples below... mContext private Intent mIntent Retrieve SMS public void onReceive Context context Intent intent mContext context mIntent intent.. intent filter receiver In the MMSReceiver class the onReceive method is only able to grab the phoneNumber that the message..
Network listener Android http://stackoverflow.com/questions/1783117/network-listener-android extends BroadcastReceiver @Override public void onReceive Context context Intent intent ConnectivityManager connectivityManager..
Retrieve incoming call's phone number in Android http://stackoverflow.com/questions/1853220/retrieve-incoming-calls-phone-number-in-android String TAG CustomBroadcastReceiver @Override public void onReceive Context context Intent intent Log.v TAG WE ARE INSIDE TelephonyManager..
Intent action for network events in android sdk http://stackoverflow.com/questions/2294971/intent-action-for-network-events-in-android-sdk extends BroadcastReceiver @Override public void onReceive Context context Intent intent TODO Auto generated method stub.. extends BroadcastReceiver @Override public void onReceive Context context Intent intent Log.d ConnectivityReceiver.class.getSimpleName..
Trying to start a service on boot on Android http://stackoverflow.com/questions/2784441/trying-to-start-a-service-on-boot-on-android android enabled true BroadcastReceiver public void onReceive Context context Intent intent if android.intent.action.BOOT_COMPLETED.. extends BroadcastReceiver @Override public void onReceive Context context Intent intent Intent startServiceIntent new..
On logout, clear Activity history stack, preventing “back” button from opening logged-in-only Activites http://stackoverflow.com/questions/3007998/on-logout-clear-activity-history-stack-preventing-back-button-from-opening-l new BroadcastReceiver @Override public void onReceive Context context Intent intent Log.d onReceive Logout in progress.. public void onReceive Context context Intent intent Log.d onReceive Logout in progress At this point you should start the login..
How can I monitor the network connection status in Android? http://stackoverflow.com/questions/3307237/how-can-i-monitor-the-network-connection-status-in-android new BroadcastReceiver @Override public void onReceive Context context Intent intent Log.w Network Listener Network..
Android - SMS Broadcast receiver http://stackoverflow.com/questions/4117701/android-sms-broadcast-receiver String TAG SMSBroadcastReceiver @Override public void onReceive Context context Intent intent Log.i TAG Intent recieved intent.getAction..
How to delete an SMS from the inbox in Android programmatically? http://stackoverflow.com/questions/419184/how-to-delete-an-sms-from-the-inbox-in-android-programmatically intent filter receiver In your BroadcastReceiver in onReceive method before performing anything with your message simply call..
Alarm Manager Example http://stackoverflow.com/questions/4459058/alarm-manager-example Alarm extends BroadcastReceiver @Override public void onReceive Context context Intent intent PowerManager pm PowerManager.. Alarm alarm new Alarm @Override public void onReceive Context context Intent intent if intent.getAction .equals android.intent.action.BOOT_COMPLETED..
getApplication() vs. getApplicationContext() http://stackoverflow.com/questions/5018545/getapplication-vs-getapplicationcontext which is not a context but is given a context in its onReceive method you can only call getApplicationContext . Which also..
How to Start an Application on Startup? http://stackoverflow.com/questions/6391902/how-to-start-an-application-on-startup extends BroadcastReceiver @Override public void onReceive Context context Intent intent if android.intent.action.BOOT_COMPLETED..
how to use LocalBroadcastManager? http://stackoverflow.com/questions/8802157/how-to-use-localbroadcastmanager new BroadcastReceiver @Override public void onReceive Context context Intent intent Get extra data included in the..
Accessing R from a BroadcastReceiver http://stackoverflow.com/questions/15029647/accessing-r-from-a-broadcastreceiver listener listeners.remove listener In your OnReceive for BroadcastReceiveListener listener listeners listener.onReceive..
Android persistent socket connection rules http://stackoverflow.com/questions/15254146/android-persistent-socket-connection-rules on the said assumptions. Additional Things to Note In the OnReceive method of the BroadcastReceiver for the pinging alarm if you.. request is finished. Android holds a wake lock only until OnReceive returns after that it is possible but rare that the CPU may..
How to cancel this repeating alarm? http://stackoverflow.com/questions/3330522/how-to-cancel-this-repeating-alarm alarmTime.getTimeInMillis 30 1000 sender In my OnReceive method I just display the notification in status bar and set..
How to send and receive broadcast message http://stackoverflow.com/questions/3907713/how-to-send-and-receive-broadcast-message the sendBroadcast. With breakpoints set I never reach the OnReceive. manifest activity android name .WebResults android label @string..
Android: BroadcastReceiver intent to Detect Camera Photo Taken? http://stackoverflow.com/questions/4389427/android-broadcastreceiver-intent-to-detect-camera-photo-taken a linebreak on the first line of the BroadcastReceiver's OnReceive method but it never reaches that code. Does anyone know what..
activate an application when a power button is clicked http://stackoverflow.com/questions/8940922/activate-an-application-when-a-power-button-is-clicked which is initiated when powerbutton is clicked. Now in OnReceive method of the Receiver do what you want. For example in manifest..
Sending and Receiving SMS and MMS in Android (pre Kit Kat Android 4.4) http://stackoverflow.com/questions/14452808/sending-and-receiving-sms-and-mms-in-android-pre-kit-kat-android-4-4 To receive SMS messages I had to register a receiver in the AndroidMainfest.xml file. Then I had to override the onReceive method of the BroadcastReceiver . I have included examples below. MainActivity.java public class MainActivity extends Activity.. android.provider.Telephony.SMS_RECEIVED private Context mContext private Intent mIntent Retrieve SMS public void onReceive Context context Intent intent mContext context mIntent intent String action intent.getAction if action.equals ACTION_SMS_RECEIVED.. data android mimeType application vnd.wap.mms message intent filter receiver In the MMSReceiver class the onReceive method is only able to grab the phoneNumber that the message was sent from. How do you grab other important things from..
Network listener Android http://stackoverflow.com/questions/1783117/network-listener-android this question New java class public class ConnectionChangeReceiver extends BroadcastReceiver @Override public void onReceive Context context Intent intent ConnectivityManager connectivityManager ConnectivityManager context.getSystemService Context.CONNECTIVITY_SERVICE..
Retrieve incoming call's phone number in Android http://stackoverflow.com/questions/1853220/retrieve-incoming-calls-phone-number-in-android extends BroadcastReceiver private static final String TAG CustomBroadcastReceiver @Override public void onReceive Context context Intent intent Log.v TAG WE ARE INSIDE TelephonyManager telephony TelephonyManager context.getSystemService..
Intent action for network events in android sdk http://stackoverflow.com/questions/2294971/intent-action-for-network-events-in-android-sdk import android.content.Intent public class NetworkStateReceiver extends BroadcastReceiver @Override public void onReceive Context context Intent intent TODO Auto generated method stub if intent.getAction .equals android.net.ConnectivityManager.CONNECTIVITY_ACTION.. intent filter receiver . public class ConnectivityReceiver extends BroadcastReceiver @Override public void onReceive Context context Intent intent Log.d ConnectivityReceiver.class.getSimpleName action intent.getAction share improve this..
Trying to start a service on boot on Android http://stackoverflow.com/questions/2784441/trying-to-start-a-service-on-boot-on-android intent filter receiver service android name com.test.RunService android enabled true BroadcastReceiver public void onReceive Context context Intent intent if android.intent.action.BOOT_COMPLETED .equals intent.getAction Intent serviceLauncher new.. package com.example public class MyBroadcastReceiver extends BroadcastReceiver @Override public void onReceive Context context Intent intent Intent startServiceIntent new Intent context MyService.class context.startService startServiceIntent..
On logout, clear Activity history stack, preventing “back” button from opening logged-in-only Activites http://stackoverflow.com/questions/3007998/on-logout-clear-activity-history-stack-preventing-back-button-from-opening-l intentFilter.addAction com.package.ACTION_LOGOUT registerReceiver new BroadcastReceiver @Override public void onReceive Context context Intent intent Log.d onReceive Logout in progress At this point you should start the login activity and.. registerReceiver new BroadcastReceiver @Override public void onReceive Context context Intent intent Log.d onReceive Logout in progress At this point you should start the login activity and finish this one finish intentFilter snip share..
How can I monitor the network connection status in Android? http://stackoverflow.com/questions/3307237/how-can-i-monitor-the-network-connection-status-in-android sample code . Here is a snippet BroadcastReceiver networkStateReceiver new BroadcastReceiver @Override public void onReceive Context context Intent intent Log.w Network Listener Network Type Changed IntentFilter filter new IntentFilter ConnectivityManager.CONNECTIVITY_ACTION..
Android - SMS Broadcast receiver http://stackoverflow.com/questions/4117701/android-sms-broadcast-receiver android.provider.Telephony.SMS_RECEIVED private static final String TAG SMSBroadcastReceiver @Override public void onReceive Context context Intent intent Log.i TAG Intent recieved intent.getAction if intent.getAction SMS_RECEIVED Bundle bundle..
How to delete an SMS from the inbox in Android programmatically? http://stackoverflow.com/questions/419184/how-to-delete-an-sms-from-the-inbox-in-android-programmatically
Alarm Manager Example http://stackoverflow.com/questions/4459058/alarm-manager-example import android.widget.Toast public class Alarm extends BroadcastReceiver @Override public void onReceive Context context Intent intent PowerManager pm PowerManager context.getSystemService Context.POWER_SERVICE PowerManager.WakeLock.. android.content.Intent public class AutoStart extends BroadcastReceiver Alarm alarm new Alarm @Override public void onReceive Context context Intent intent if intent.getAction .equals android.intent.action.BOOT_COMPLETED alarm.SetAlarm context..
getApplication() vs. getApplicationContext() http://stackoverflow.com/questions/5018545/getapplication-vs-getapplicationcontext means one thing when writing code in a broadcast receiver which is not a context but is given a context in its onReceive method you can only call getApplicationContext . Which also means that you are not guaranteed to have access to your application..
How to Start an Application on Startup? http://stackoverflow.com/questions/6391902/how-to-start-an-application-on-startup and start your service. public class StartMyServiceAtBootReceiver extends BroadcastReceiver @Override public void onReceive Context context Intent intent if android.intent.action.BOOT_COMPLETED .equals intent.getAction Intent serviceIntent new..
how to use LocalBroadcastManager? http://stackoverflow.com/questions/8802157/how-to-use-localbroadcastmanager event name is broadcasted. private BroadcastReceiver mMessageReceiver new BroadcastReceiver @Override public void onReceive Context context Intent intent Get extra data included in the Intent String message intent.getStringExtra message Log.d receiver..
Accessing R from a BroadcastReceiver http://stackoverflow.com/questions/15029647/accessing-r-from-a-broadcastreceiver BroadcastReceiveListener listener if listeners.contains listener listeners.remove listener In your OnReceive for BroadcastReceiveListener listener listeners listener.onReceive arg1 arg2 In your Activity public class MyActivity extends..
Android persistent socket connection rules http://stackoverflow.com/questions/15254146/android-persistent-socket-connection-rules notifications so that is the only validation that I received on the said assumptions. Additional Things to Note In the OnReceive method of the BroadcastReceiver for the pinging alarm if you are not directly calling on the socket spawning a new thread.. or intent you will need to hold a wake lock until the ping request is finished. Android holds a wake lock only until OnReceive returns after that it is possible but rare that the CPU may sleep before the ping is finished. Use a High Performance Wifi..
How to cancel this repeating alarm? http://stackoverflow.com/questions/3330522/how-to-cancel-this-repeating-alarm Schedule the alarm alarmManager.setRepeating AlarmManager.RTC_WAKEUP alarmTime.getTimeInMillis 30 1000 sender In my OnReceive method I just display the notification in status bar and set the flag as FLAG_AUTO_CANCEL manager NotificationManager context.getSystemService..
How to send and receive broadcast message http://stackoverflow.com/questions/3907713/how-to-send-and-receive-broadcast-message two activities that are inside of tabs. I am trying to use the sendBroadcast. With breakpoints set I never reach the OnReceive. manifest activity android name .WebResults android label @string app_name intent filter action android name com.toxy.LOAD_URL..
Android: BroadcastReceiver intent to Detect Camera Photo Taken? http://stackoverflow.com/questions/4389427/android-broadcastreceiver-intent-to-detect-camera-photo-taken to. I've tried to debug the application on my own phone with a linebreak on the first line of the BroadcastReceiver's OnReceive method but it never reaches that code. Does anyone know what the correct intent for which I should be listening is Or is..
activate an application when a power button is clicked http://stackoverflow.com/questions/8940922/activate-an-application-when-a-power-button-is-clicked You can try this trick . Register a Broadcast Receiver which is initiated when powerbutton is clicked. Now in OnReceive method of the Receiver do what you want. For example in manifest file register a receiver receiver android name com.test.check.MyReceiver..
|