简体   繁体   中英

BroadcastReceiver not working in android

I am using this code to create a BroadcastReceiver that has to run even the application is not running.

import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import org.apache.http.HttpResponse;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.message.BasicHeader;
import org.apache.http.params.HttpConnectionParams;
import org.apache.http.protocol.HTTP;
import org.apache.http.util.EntityUtils;
import org.json.JSONException;
import org.json.JSONObject;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.util.Log;

public class ReminderClass extends BroadcastReceiver {
    SharedPreferences myPrefs;
    String prefuName, pref_usr_fname, prefdev_id, pref_usr_lname, pref_uid,
            pref_usr_email, ret, dates_btw;;
    String event_desc, e_time, s_time, event_title, day_event_id;
    ArrayList<String> day_data = new ArrayList<String>();
    ArrayList<String> st_time = new ArrayList<String>();
    ArrayList<String> et_time = new ArrayList<String>();
    ArrayList<String> day_eve_id = new ArrayList<String>();
    ArrayList<String> day_eve_title = new ArrayList<String>();
    int MILLIS_IN_FIFTEEN_MINS = 1000 * 60 * 15 ;

    SimpleDateFormat dateFormat = new SimpleDateFormat("hh:mm a");
    @Override
    public void onReceive(Context con, Intent _intent) {
        // TODO Auto-generated method stub
        Log.v("inside the broadcast receiver1 >>","broadcast1");
        if (_intent.getAction().equals("REMINDER")) {

        Log.v("inside the broadcast receiver2 >>","broadcast2");
        myPrefs = con.getSharedPreferences("myPrefs", 1);
        prefuName = myPrefs.getString("u_name", "");
        pref_usr_fname = myPrefs.getString("fname", "");
        prefdev_id = myPrefs.getString("dev_id", "");
        pref_usr_lname = myPrefs.getString("lname", "");
        pref_uid = myPrefs.getString("id", "");
        pref_usr_email = myPrefs.getString("email", "");

        Log.v("pref name>>> ", prefuName);
        Log.v("pref pass >>", pref_usr_fname);
        Log.v("prev devid >>", prefdev_id);
        Log.v("pref_usr_fname", pref_usr_fname);
        Log.v("pref_usr_lname", pref_usr_lname);
        Log.v("pref_uid", pref_uid);
        Log.v("pref_usr_email", pref_usr_email);

        try {
            HttpClient client = new DefaultHttpClient();
            HttpConnectionParams.setConnectionTimeout(client.getParams(), 10000); // Timeout
                                                                                    // Limit

            HttpResponse response;
            HttpPost post = null;
            JSONObject json = new JSONObject();

                post = new HttpPost("my_url");
                json.put("user_id", pref_uid);

                post.setHeader("Content-Type", "application/json");
                post.setHeader("Accept", "application/json");
                StringEntity se = new StringEntity(json.toString());
                se.setContentEncoding(new BasicHeader(HTTP.CONTENT_TYPE,
                        "application/json"));
                post.setEntity(se);
                response = client.execute(post);
                Log.v("Response >>>", response + "");
                ret = EntityUtils.toString(response.getEntity());
                Log.v("My calendar response", ret);
        } catch (UnsupportedEncodingException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        } catch (ClientProtocolException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        } catch (org.apache.http.ParseException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        } catch (JSONException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        } catch (IOException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        }           
    }
        else
        {
            Log.v("Broadcast not working >>","broadcast not working");
        }
    }

}

In my manifest,

<receiver
            android:name=".ReminderClass"
            android:enabled="true"   android:permission="android.permission.INTERNET">
            <intent-filter>
                <action android:name="REMINDER" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </receiver>

My Broadcast is not been called. what I have done wrong?

Step #1: Delete android:permission from your <intent-filter> , unless you really are requiring that anyone sending the broadcast must hold the INTERNET permission.

Step #2: Use a unique action string, perhaps one that has your package name in it, instead of REMINDER .

Step #3: Move all of your code out of the BroadcastReceiver and into something else, like an IntentService . Your current code is doing network I/O on the main application thread. Your code, therefore, will crash on Android 4.x devices, and is merely a very bad idea on earlier Android versions.

I solved my problem. I have added a Service, and called that service in a BroadcastReceiver, which checks when boot complete. In Oncreate() method of the service, I implemented a thread which runs every minute. I used my code inside the run method of the thread.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM