<android save data from background service> i have...
# stackoverflow
u
android save data from background service i have a background service which is working in background and looking for new SMS and creating notification and showing SMS public class SmsBoradcast extends BroadcastReceiver { private static final String SMS = "android.provider.Telephony.SMS_RECEIVED"; @Override public void onReceive(Context context, Intent intent) { if(intent.getAction().equals(SMS)){ Bundle bundle = intent.getExtras(); if (bundle != null) { Object[] pdus =...