CUADERNO DE TRABAJO - Semana 9

Descargar como docx, pdf o txt
Descargar como docx, pdf o txt
Está en la página 1de 18

PROGRAMA DE ESTUDIO

DESARROLLO DE SISTEMAS DE INFORMACIÓN

DESARROLLO DE
APLICACIONES MÓVILES I
PROGRAMA DE ESTUDIO
DESARROLLO DE SISTEMAS DE INFORMACIÓN

Semana 5: Ubicación en Android Studio

Ubicación en Android Studio.


Existen Varias maneras de conocer nuestra ubicación, en esta clase vamos a mostrar 3 maneras de
poder obtener nuestra ubicación en android.
 GPS.
 Network.
 Passive.

GPS es una herramienta sumamente utilizada cuando hablamos de dispositivos móviles, su


portabilidad, precisión y oportunismo, permiten a los usuarios transmitir y recibir información de todo
tipo relacionada con geolocalización, tenemos asi:
 Mapas de Navegación.
 Rastreadores de posición
 Levantamiento de información.
 Etc.
El ejemplo consiste de un proyecto simple que nos permite recibir las coordenadas del GPS con alta
precisión y mostrar las actualizaciones de nuestra posició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>

Generación de los objetos Java


MainAcitivity

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;

public class MainActivity extends AppCompatActivity {

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

TextView longitudeValueNetwork, latitudeValueNetwork;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);

longitudeValueBest = (TextView) findViewById(R.id.longitudeValueBest);


latitudeValueBest = (TextView) findViewById(R.id.latitudeValueBest);
longitudeValueGPS = (TextView) findViewById(R.id.longitudeValueGPS);
latitudeValueGPS = (TextView) findViewById(R.id.latitudeValueGPS);
longitudeValueNetwork = (TextView) findViewById(R.id.longitudeValueNetwork);
latitudeValueNetwork = (TextView) findViewById(R.id.latitudeValueNetwork);
}

private boolean checkLocation() {


if (!isLocationEnabled())
showAlert();
return isLocationEnabled();
}

private void showAlert() {


final AlertDialog.Builder dialog = new AlertDialog.Builder(this);
dialog.setTitle("Enable Location")
.setMessage("Su ubicación esta desactivada.\npor favor active su ubicación " +
"usa esta app")
.setPositiveButton("Configuración de ubicación", new
DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface paramDialogInterface, int paramInt) {
PROGRAMA DE ESTUDIO
DESARROLLO DE SISTEMAS DE INFORMACIÓN

Intent myIntent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);


startActivity(myIntent);
}
})
.setNegativeButton("Cancelar", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface paramDialogInterface, int paramInt) {
}
});
dialog.show();
}

private boolean isLocationEnabled() {


return locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER) ||
locationManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER);
}

public void toggleGPSUpdates(View view) {


if (!checkLocation())
return;
Button button = (Button) view;
if (button.getText().equals(getResources().getString(R.string.pause))) {
locationManager.removeUpdates(locationListenerGPS);
button.setText(R.string.resume);
} else {
if (ActivityCompat.checkSelfPermission(this,
Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED &&
ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION) !=
PackageManager.PERMISSION_GRANTED) {

}
locationManager.requestLocationUpdates(
LocationManager.GPS_PROVIDER, 2 * 20 * 1000, 10, locationListenerGPS);
button.setText(R.string.pause);
}
PROGRAMA DE ESTUDIO
DESARROLLO DE SISTEMAS DE INFORMACIÓN

public void toggleBestUpdates(View view) {


if (!checkLocation())
return;
Button button = (Button) view;
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(locationListenerBest);
button.setText(R.string.resume);
} else {
Criteria criteria = new Criteria();
criteria.setAccuracy(Criteria.ACCURACY_FINE);
criteria.setAltitudeRequired(false);
criteria.setBearingRequired(false);
criteria.setCostAllowed(true);
criteria.setPowerRequirement(Criteria.POWER_LOW);
String provider = locationManager.getBestProvider(criteria, true);
if (provider != null) {
locationManager.requestLocationUpdates(provider, 2 * 20 * 1000, 10,
locationListenerBest);
button.setText(R.string.pause);
Toast.makeText(this, "Best Provider is " + provider, Toast.LENGTH_LONG).show();
}
}
}

public void toggleNetworkUpdates(View view) {


if (!checkLocation())
return;
Button button = (Button) view;
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);
}
}

private final LocationListener locationListenerBest = new LocationListener() {


public void onLocationChanged(Location location) {
longitudeBest = location.getLongitude();
latitudeBest = location.getLatitude();

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

public void onStatusChanged(String s, int i, Bundle bundle) {


}

@Override
public void onProviderEnabled(String s) {
}

@Override
public void onProviderDisabled(String s) {
}
};

private final LocationListener locationListenerNetwork = new LocationListener() {


public void onLocationChanged(Location location) {
longitudeNetwork = location.getLongitude();
latitudeNetwork = location.getLatitude();

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) {

}
};

private final LocationListener locationListenerGPS = new LocationListener() {


public void onLocationChanged(Location location) {
longitudeGPS = location.getLongitude();
latitudeGPS = location.getLatitude();
runOnUiThread(new Runnable() {
@Override
public void run() {
longitudeValueGPS.setText(longitudeGPS + "");
latitudeValueGPS.setText(latitudeGPS + "");
Toast.makeText(MainActivity.this, "GPS Provider update",
Toast.LENGTH_SHORT).show();
}
});
}
@Override
public void onStatusChanged(String s, int i, Bundle bundle) {
}

@Override
public void onProviderEnabled(String s) {
}
@Override
PROGRAMA DE ESTUDIO
DESARROLLO DE SISTEMAS DE INFORMACIÓN

public void onProviderDisabled(String s) {


}
};
}

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);

Aquí obtenemos el servicio NETWORK de nuestras redes telefónicas

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.

También podría gustarte