0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

GPSの研究 その18

Posted at

概要

GPSを理解したかった。
android2.1で、NMEAを眺めるだけのアプリ。

写真

device-2018-06-21-071855.png

サンプルコード

package com.ohisamallc.ohiapo9;

import android.app.Activity;
import android.location.GpsStatus;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.widget.TableLayout;
import android.widget.TextView;
import android.view.ViewGroup;

public class ohiapo9 extends Activity
{
	private LocationManager mLocationManager;
	private LocationListener mLocationListener;
	private TextView textView;
	@Override public void onCreate(Bundle savedInstanceState)
	{
		super.onCreate(savedInstanceState);
		textView = new TextView(this);
		textView.setWidth(200);
		textView.setText("ok");
		TableLayout tableLayout = new TableLayout(this);
		tableLayout.addView(textView, new TableLayout.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT));
		setContentView(tableLayout);
	}
	@Override protected void onDestroy()
	{
		super.onDestroy();
		mLocationManager.removeUpdates(mLocationListener);
	}
	@Override public void onStart()
	{
		super.onStart();
		mLocationManager = (LocationManager) getSystemService(LOCATION_SERVICE);
		if (!mLocationManager.isProviderEnabled(LocationManager.GPS_PROVIDER))
		{
		}
		mLocationListener = new locationListener();
		mLocationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 5, mLocationListener);
		mLocationManager.addNmeaListener(nmeaListener);
	}
	private final GpsStatus.NmeaListener nmeaListener = new GpsStatus.NmeaListener()
	{
		public void onNmeaReceived(long timestamp, String nmea)
		{
			String s = nmea + textView.getText().toString();
			textView.setText(s);
		}
	};
	private class locationListener implements LocationListener
	{
		public void onLocationChanged(Location loc)
		{
		}
		public void onProviderDisabled(String arg0)
		{
		}
		public void onProviderEnabled(String provider)
		{
		}
		public void onStatusChanged(String provider, int status, Bundle extras)
		{
		}
	}
}



以上。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?