Assignment # 02: Air University
Assignment # 02: Air University
Assignment # 02
Submitted On: Sunday, 19th May, 2019 | Total Marks: 40
Submitted By Syed Muhammad Taqi Mehdi 150835(Section A)
Contribution:
Assignment Tasks:
1. To use a network sensor, you need to implement four steps. Write the code required for each of
the following steps:
a. Declare a location manager variable and a network listener variable.
b. Access/reference to the location Manager.
c. Instantiate the LocationListener and assign it to the network listener. Write the four
methods that need to be implemented. No implementation is required.
d. Send a message to the LocationManager to begin listening for location changes of the
Network sensor.
Public methods
onLocationChanged(Location location)
onProviderDisabled(String provider)
onProviderEnabled(String provider)
d.
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.TextView;
counterText=(TextView) findViewById(R.id.counter_text);
}
public void startMinuteUpdate(){
IntentFilter intentFilter=new IntentFilter();
intentFilter.addAction(Intent.ACTION_TIME_TICK);
minuteUpdateReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
counter++;
counterText.setText("" + counter);
}
};
registerReceiver(minuteUpdateReceiver, intentFilter);
}
@Override
protected void onResume() {
super.onResume();
startMinuteUpdate();
}
@Override
protected void onPause()
{
super.onPause();
unregisterReceiver(minuteUpdateReceiver);
}
}
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:id="@+id/counter_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="0"
android:textSize="50sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
SCREENSHOT