Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android Intents and Broadcast Receivers Broadcast Receivers Creating a Receiver in Code

Tojo Alex
PLUS
Tojo Alex
Courses Plus Student 13,331 Points

Challenge Task 3 of 3 HELP!!!!!!

I don't understand what is to be done here.

TimeTravelActivity.java
import android.os.Bundle; import android.view.View;

public class TimeTravelActivity extends Activity {

public String targetYear;

private NetworkConnectionReceiver receiver = new NetworkConnectionReceiver();

@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_time_travel);

Intent intent = getIntent();
targetYear = intent.getStringExtra("EXTRA_YEAR");
EnergySource source = (EnergySource)intent.getParcelableExtra("EXTRA_ENERGY");
}

@Override
protected void onResume(){
    super.onResume();
   IntentFilter filter = new IntentFilter("android.net.conn.CONNECTIVITY_CHANGE");
  registerReceiver(receiver, filter);
}

 @Override
protected void onPause(){
    super.onPause();
}
}
Tojo Alex
Tojo Alex
Courses Plus Student 13,331 Points

Update :

import android.os.Bundle; import android.view.View;

                    public class TimeTravelActivity extends Activity {

                    public String targetYear;

                    private NetworkConnectionReceiver receiver = new NetworkConnectionReceiver();

      @Override 
        protected void onCreate(Bundle savedInstanceState) { 
            super.onCreate(savedInstanceState); setContentView(R.layout.activity_time_travel);

                Intent intent = getIntent();
                targetYear = intent.getStringExtra("EXTRA_YEAR");
                EnergySource source = (EnergySource)intent.getParcelableExtra("EXTRA_ENERGY");
      }

        @Override
        protected void onResume(){
            super.onResume();
           IntentFilter filter = new IntentFilter("android.net.conn.CONNECTIVITY_CHANGE");
          registerReceiver(receiver, filter);
        }

         @Override
        protected void onPause(){
            super.onPause();
              unRegisterReciever(mReciever);
        }
    }

2 Answers

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there, Tojo Alex ! It looks to me like you're doing pretty well. You've clearly understood that we need to unregister the receiver but there are some capitalization and spelling errors in that line. The receiver is not named mReceiver, but rather just receiver so you should be getting an error about an unresolved symbol. Also, the the first "R" in "unregister" should not be capitalized. You also have a very common spelling error in both where you're putting the "i" before the "e". It's "receiver" as opposed to "reciever". Take a look at the line I used:

unregisterReceiver(receiver);

Hope this helps! :sparkles: