CUADERNO DE TRABAJO - Semana 9
CUADERNO DE TRABAJO - Semana 9
CUADERNO DE TRABAJO - Semana 9
DESARROLLO DE
APLICACIONES MÓVILES I
PROGRAMA DE ESTUDIO
DESARROLLO DE SISTEMAS DE INFORMACIÓN
Network
Es una herramienta que nos permite obtener nuestra ubicación mediante nuestras redes telefónicas.
A continuación, pondré el código de los archivos e iré explicando las funcionalidades.
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.sample.foo.simplelocationapp" >
<uses-permission
android:name="android.permission.INTERNET"/>
<uses-permission
android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission
android:name="android.permission.ACCESS_COARSE_LOCATION" />
<application
PROGRAMA DE ESTUDIO
DESARROLLO DE SISTEMAS DE INFORMACIÓN
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action
android:name="android.intent.action.MAIN" />
<category
android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
Como podemos ver en el archivo, se debe agregar permisos correspondientes para acceder a los
servicios de localización del dispositivo.
Para ello hemos agregado las siguientes lineas <uses-permission>
<uses-permission
android:name="android.permission.INTERNET"/>
<uses-permission
android:name="android.permission.ACCESS_FINE_LOCATION"
/>
<uses-permission
android:name="android.permission.ACCESS_COARSE_LOCATION
" />
Diseño
Aquí vemos como se mostrar las 3 ubicaciones de nuestro celular
PROGRAMA DE ESTUDIO
DESARROLLO DE SISTEMAS DE INFORMACIÓN
Layout
activity_main.xml
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
android:fillViewport="true"
tools:context=".MainActivity">
<RelativeLayout
PROGRAMA DE ESTUDIO
DESARROLLO DE SISTEMAS DE INFORMACIÓN
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/titleTextGPS"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text="GPS LOCATION"
android:textSize="20sp"/>
<Button
android:id="@+id/locationControllerGPS"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_below="@id/titleTextGPS"
android:text="@string/resume"
android:onClick="toggleGPSUpdates"/>
<TextView
android:id="@+id/longitudeTextGPS"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/locationControllerGPS"
android:text="longitude"
android:textSize="20sp"/>
<TextView
android:id="@+id/longitudeValueGPS"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/locationControllerGPS"
PROGRAMA DE ESTUDIO
DESARROLLO DE SISTEMAS DE INFORMACIÓN
android:layout_toRightOf="@id/longitudeTextGPS"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:text="0.0000"
android:textSize="20sp"/>
<TextView
android:id="@+id/latitudeTextGPS"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/longitudeTextGPS"
android:text="latitude"
android:textSize="20sp"/>
<TextView
android:id="@+id/latitudeValueGPS"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/longitudeValueGPS"
android:layout_toRightOf="@id/longitudeTextGPS"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:text="0.0000"
android:textSize="20sp"/>
<View
android:id="@+id/separator1"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_below="@id/latitudeValueGPS"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:background="@color/material_blue_grey_800"/>
<TextView
PROGRAMA DE ESTUDIO
DESARROLLO DE SISTEMAS DE INFORMACIÓN
android:id="@+id/titleTextNetwork"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_below="@id/separator1"
android:text="NETWORK LOCATION"
android:textSize="20sp"/>
<Button
android:id="@+id/locationControllerNetwork"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_below="@id/titleTextNetwork"
android:text="@string/resume"
android:onClick="toggleNetworkUpdates"/>
<TextView
android:id="@+id/longitudeTextNetwork"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/locationControllerNetwork"
android:text="longitude"
android:textSize="20sp"/>
<TextView
android:id="@+id/longitudeValueNetwork"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/locationControllerNetwork"
android:layout_toRightOf="@id/longitudeTextNetwork"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:text="0.0000"
android:textSize="20sp"/>
PROGRAMA DE ESTUDIO
DESARROLLO DE SISTEMAS DE INFORMACIÓN
<TextView
android:id="@+id/latitudeTextNetwork"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/longitudeTextNetwork"
android:text="latitude"
android:textSize="20sp"/>
<TextView
android:id="@+id/latitudeValueNetwork"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/longitudeValueNetwork"
android:layout_toRightOf="@id/longitudeTextNetwork"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:text="0.0000"
android:textSize="20sp"/>
<View
android:id="@+id/separator2"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_below="@id/latitudeValueNetwork"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:background="@color/material_blue_grey_800"/>
<TextView
android:id="@+id/titleTextBest"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
PROGRAMA DE ESTUDIO
DESARROLLO DE SISTEMAS DE INFORMACIÓN
android:layout_below="@id/separator2"
android:text="BEST LOCATION"
android:textSize="20sp"/>
<Button
android:id="@+id/locationControllerBest"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_below="@id/titleTextBest"
android:text="@string/resume"
android:onClick="toggleBestUpdates"/>
<TextView
android:id="@+id/longitudeTextBest"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/locationControllerBest"
android:text="longitude"
android:textSize="20sp"/>
<TextView
android:id="@+id/longitudeValueBest"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/locationControllerBest"
android:layout_toRightOf="@id/longitudeTextBest"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:text="0.0000"
android:textSize="20sp"/>
<TextView
android:id="@+id/latitudeTextBest"
PROGRAMA DE ESTUDIO
DESARROLLO DE SISTEMAS DE INFORMACIÓN
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/longitudeTextBest"
android:text="latitude"
android:textSize="20sp"/>
<TextView
android:id="@+id/latitudeValueBest"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/longitudeValueBest"
android:layout_toRightOf="@id/longitudeTextBest"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:text="0.0000"
android:textSize="20sp"/>
<View
android:id="@+id/separator3"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_below="@id/latitudeValueBest"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:background="@color/material_blue_grey_800"/>
<TextView
android:id="@+id/addressText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/separator3"
android:layout_centerHorizontal="true"
android:text="Address"
android:textSize="20sp"/>
PROGRAMA DE ESTUDIO
DESARROLLO DE SISTEMAS DE INFORMACIÓN
</RelativeLayout>
</ScrollView>
package com.sample.foo.simplelocationapp;
import android.Manifest;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.location.Criteria;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.provider.Settings;
import android.support.v4.app.ActivityCompat;
import android.support.v7.app.AlertDialog;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;
LocationManager locationManager;
double longitudeBest, latitudeBest;
double longitudeGPS, latitudeGPS;
double longitudeNetwork, latitudeNetwork;
TextView longitudeValueBest, latitudeValueBest;
TextView longitudeValueGPS, latitudeValueGPS;
PROGRAMA DE ESTUDIO
DESARROLLO DE SISTEMAS DE INFORMACIÓN
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
}
locationManager.requestLocationUpdates(
LocationManager.GPS_PROVIDER, 2 * 20 * 1000, 10, locationListenerGPS);
button.setText(R.string.pause);
}
PROGRAMA DE ESTUDIO
DESARROLLO DE SISTEMAS DE INFORMACIÓN
if (button.getText().equals(getResources().getString(R.string.pause))) {
if (ActivityCompat.checkSelfPermission(this,
Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED &&
ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION) !=
PackageManager.PERMISSION_GRANTED) {
}
locationManager.removeUpdates(locationListenerNetwork);
button.setText(R.string.resume);
}
else {
locationManager.requestLocationUpdates(
LocationManager.NETWORK_PROVIDER, 20 * 1000, 10, locationListenerNetwork);
Toast.makeText(this, "Network provider started running", Toast.LENGTH_LONG).show();
button.setText(R.string.pause);
}
}
runOnUiThread(new Runnable() {
@Override
public void run() {
longitudeValueBest.setText(longitudeBest + "");
latitudeValueBest.setText(latitudeBest + "");
Toast.makeText(MainActivity.this, "Best Provider update",
Toast.LENGTH_SHORT).show();
}
});
}
@Override
PROGRAMA DE ESTUDIO
DESARROLLO DE SISTEMAS DE INFORMACIÓN
@Override
public void onProviderEnabled(String s) {
}
@Override
public void onProviderDisabled(String s) {
}
};
runOnUiThread(new Runnable() {
@Override
public void run() {
longitudeValueNetwork.setText(longitudeNetwork + "");
latitudeValueNetwork.setText(latitudeNetwork + "");
Toast.makeText(MainActivity.this, "Network Provider update",
Toast.LENGTH_SHORT).show();
}
});
}
@Override
public void onStatusChanged(String s, int i, Bundle bundle) {
}
PROGRAMA DE ESTUDIO
DESARROLLO DE SISTEMAS DE INFORMACIÓN
@Override
public void onProviderEnabled(String s) {
}
@Override
public void onProviderDisabled(String s) {
}
};
@Override
public void onProviderEnabled(String s) {
}
@Override
PROGRAMA DE ESTUDIO
DESARROLLO DE SISTEMAS DE INFORMACIÓN
En las siguientes lineas de código es donde se llama a los servicios de localización para nuestro
dispositivo.
locationManager.requestLocationUpdates(
LocationManager.GPS_PROVIDER, 2 * 20 * 1000, 10,
locationListenerGPS);
button.setText(R.string.pause);
Aquí llamamos a nuestro servicio GPS y damos el tiempo en segundos para actualizar nuestra
ubicación
locationManager.requestLocationUpdates(
LocationManager.NETWORK_PROVIDER, 20 * 1000, 10, locationListenerNetwork);
Toast.makeText(this, "Network provider started running",
Toast.LENGTH_LONG).show();
button.setText(R.string.pause);
Conclusiones
En esta clase hemos aprendido como usar GPS y NETWORK para obtener nuestra ubicación en
Android Studio. Además, compramos que ubicación tiene más precisión. El código que hemos escrito
es un ejemplo sencillo de cómo obtener nuestra ubicación y poder mostrar nuestra latitud y longitud.