Intent Service with network state change

1.1k Views Asked by At

i am using a intent service to upload multiple images to the server.every thing works fine. but if there is no network connection,how do i make sure that the service stays alive till the network is back.

public class PostPropertyIntentService extends IntentService {
    // TODO: Rename actions, choose action names that describe tasks that this
    // IntentService can perform, e.g. ACTION_FETCH_NEW_ITEMS
    private static final String ACTION_FOO = "pacakagename.action.FOO";



    private static final String EXTRA_PARAM1 = "PARAM1";
    private static final String EXTRA_PARAM2 = "PARAM2";


    public static void startActionFoo(Context context, String param1, String param2) {
        Intent intent = new Intent(context, PostIntentService.class);
        intent.setAction(ACTION_FOO);
        intent.putExtra(EXTRA_PARAM1, param1);
        intent.putExtra(EXTRA_PARAM2, param2);
        context.startService(intent);
    }




    public PostIntentService() {
        super("PostIntentService");
    }


    @Override
    protected void onHandleIntent(Intent intent) {
        if (intent != null) {
            final String action = intent.getAction();
            if (ACTION_FOO.equals(action)) {
                final String param1 = intent.getStringExtra(EXTRA_PARAM1);
                final String param2 = intent.getStringExtra(EXTRA_PARAM2);
               handleActionFoo(param1, param2);
            } 
        }
    }



    private void handleActionFoo(Property mProperty, ArrayList<String> mPicUrls) {
        // TODO: Handle action Foo
        NetworkActions na = new NetworkActions();
        String response = na.uploadProperty(mProperty, mPicUrls);

        Intent resultBroadCastIntent = new Intent();
        resultBroadCastIntent.setAction("pacakgename.mybroadcast");

        resultBroadCastIntent.putExtra(OUTPUT_TEXT, response );
        sendBroadcast(resultBroadCastIntent);
    }


}
1

There are 1 best solutions below

0
On BEST ANSWER
public class ConnectivityDetector_Receiver extends BroadcastReceiver{

@Override
public void onReceive(Context context, Intent intent) {
     ConnectivityManager cm = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
        NetworkInfo info = cm.getActiveNetworkInfo();
        if (info != null) {
            if (info.isConnected()) {
                // you got a connection! tell your user!
                Log.i("Post", "Connected");
                Intent intent_service=new Intent(context, Background_Syn_Service.class);
                context.startService(intent_service);
            }
        } 
    }

**Use this receiver and you will be notified when network returns **

 <receiver android:name="yourpackageName.ConnectivityDetector_Receiver" >
        <intent-filter>
            <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
        </intent-filter>
    </receiver>