Home Java javaTutorial Android mobile phone obtains the longitude and latitude address of GPS and base station implementation code

Android mobile phone obtains the longitude and latitude address of GPS and base station implementation code

Jan 07, 2017 pm 03:00 PM

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
android:background="#FFD3D7DF" 
android:orientation="vertical" > 
<LinearLayout 
android:id="@+id/location" 
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
android:layout_marginBottom="20dip" 
android:layout_marginLeft="20dip" 
android:layout_marginRight="20dip" 
android:layout_marginTop="20dip" 
android:background="@drawable/bg_frame" 
android:gravity="center_vertical" 
android:orientation="vertical" 
android:paddingBottom="2dip" 
android:paddingLeft="10dip" 
android:paddingRight="10dip" 
android:paddingTop="10dip" > 
<TextView 
android:id="@+id/providerTitle" 
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
android:text="获取经纬度:" 
android:textColor="#007979" /> 
<LinearLayout 
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
android:orientation="horizontal" > 
<RadioGroup 
android:id="@+id/providerGroup" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:orientation="horizontal" > 
<RadioButton 
android:id="@+id/gpsProvide" 
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
android:text="gps" 
android:textColor="#005AB5" /> 
<RadioButton 
android:id="@+id/networkProvide" 
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
android:text="基站" 
android:textColor="#005AB5" /> 
</RadioGroup> 
<ImageButton 
android:id="@+id/bestLocationProId" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:src="@drawable/loction" /> 
</LinearLayout> 
<LinearLayout 
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
android:orientation="horizontal" > 
<TextView 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:text="最佳选择方式:" 
android:textColor="#005AB5" /> 
<TextView 
android:id="@+id/locationProId" 
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
android:textColor="#8F4586" /> 
</LinearLayout> 
<LinearLayout 
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
android:orientation="horizontal" > 
<TextView 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:text="经度:" 
android:textColor="#005AB5" /> 
<EditText 
android:id="@+id/latEditTextId" 
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
android:enabled="false" 
android:textColor="#8F4586" /> 
</LinearLayout> 
<LinearLayout 
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
android:orientation="horizontal" > 
<TextView 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:text="纬度:" 
android:textColor="#005AB5" /> 
<EditText 
android:id="@+id/lonEditTextId" 
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
android:enabled="false" 
android:textColor="#8F4586" /> 
</LinearLayout> 
</LinearLayout> 
</LinearLayout>
Copy after login

<---activity->

package com.talkweb.mobileapp; 
import java.text.DecimalFormat; 
import android.app.Activity; 
import android.content.Context; 
import android.location.Criteria; 
import android.location.Location; 
import android.location.LocationListener; 
import android.location.LocationManager; 
import android.os.Bundle; 
import android.view.View; 
import android.view.View.OnClickListener; 
import android.widget.EditText; 
import android.widget.ImageButton; 
import android.widget.RadioButton; 
import android.widget.RadioGroup; 
import android.widget.TextView; 
import android.widget.RadioGroup.OnCheckedChangeListener; 
/** 
* 
* @author Mr.Z 
* @time 2012-5-16 
* 
*/ 
public class LocationappActivity extends Activity { 
private ImageButton btnGetBestLocationPro; 
private EditText txtLat; 
private EditText txtLon; 
private TextView txtLocationPro; 
private LocationManager locationManager; 
private DecimalFormat format; 
private String provider; 
private RadioGroup providerGroup; 
private RadioButton radGps; 
private RadioButton radNetwork; 
private String latStr; 
private String lonStr; 
protected void onCreate(Bundle savedInstanceState) { 
super.onCreate(savedInstanceState); 
this.setContentView(R.layout.main); 
btnGetBestLocationPro = (ImageButton) findViewById(R.id.bestLocationProId); 
btnGetBestLocationPro.setOnClickListener(new GetBestLocationProListener()); 
txtLat = (EditText) findViewById(R.id.latEditTextId); 
txtLon = (EditText) findViewById(R.id.lonEditTextId); 
txtLocationPro = (TextView) findViewById(R.id.locationProId); 
format = new DecimalFormat("#.000000"); 
locationManager = (LocationManager) LocationappActivity.this.getSystemService(Context.LOCATION_SERVICE); 
Criteria criteria = new Criteria(); 
criteria.setAccuracy(Criteria.ACCURACY_FINE); 
criteria.setPowerRequirement(Criteria.POWER_LOW); 
criteria.setAltitudeRequired(false); 
criteria.setSpeedRequired(false); 
criteria.setCostAllowed(false); 
provider = locationManager.getBestProvider(criteria, false); 
txtLocationPro.setText(provider); 
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, new TestLocationListener()); 
providerGroup = (RadioGroup) findViewById(R.id.providerGroup); 
radGps = (RadioButton) findViewById(R.id.gpsProvide); 
radNetwork = (RadioButton) findViewById(R.id.networkProvide); 
providerGroup.setOnCheckedChangeListener(new LocationProvideCheckedlistener()); 
if (provider.equals(LocationManager.GPS_PROVIDER)) { 
System.out.println("gps"); 
radGps.setSelected(true); 
radGps.setChecked(true); 
} else if (provider.equals(LocationManager.NETWORK_PROVIDER)) { 
System.out.println("network"); 
radNetwork.setSelected(true); 
radNetwork.setChecked(true); 
} 
} 
private class GetBestLocationProListener implements OnClickListener { 
@Override 
public void onClick(View v) { 
Criteria criteria = new Criteria(); 
criteria.setAccuracy(Criteria.ACCURACY_FINE); 
criteria.setPowerRequirement(Criteria.POWER_LOW); 
criteria.setAltitudeRequired(false); 
criteria.setSpeedRequired(false); 
criteria.setCostAllowed(false); 
String provider = locationManager.getBestProvider(criteria, false); 
txtLocationPro.setText(provider); 
locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, new TestLocationListener()); 
} 
} 
private class TestLocationListener implements LocationListener { 
@Override 
public void onLocationChanged(Location location) { 
double lat = location.getLatitude(); 
double lon = location.getLongitude(); 
latStr = format.format(lat); 
lonStr = format.format(lon); 
txtLat.setText(latStr); 
txtLon.setText(lonStr); 
} 
@Override 
public void onProviderDisabled(String provider) { 
} 
@Override 
public void onProviderEnabled(String provider) { 
} 
@Override 
public void onStatusChanged(String provider, int status, Bundle extras) { 
} 
} 
private class LocationProvideCheckedlistener implements OnCheckedChangeListener { 
@Override 
public void onCheckedChanged(RadioGroup group, int checkedId) { 
if (checkedId == radGps.getId()) { 
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, new TestLocationListener()); 
} else if (checkedId == radNetwork.getId()) { 
locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, new TestLocationListener()); 
} 
} 
} 
}
Copy after login

Permissions:

<uses-permission android:name="android.permission.CAMERA" /> 
<uses-permission android:name="android.permission.VIBRATE" /> 
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> 
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> 
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" /> 
<uses-permission android:name="android.permission.READ_PHONE_STATE" /> 
<uses-permission android:name="android.permission.INTERNET" /> 
<uses-permission android:name="android.permission.RECEIVE_SMS" /> 
<uses-permission android:name="android.permission.RECORD_AUDIO" /> 
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" /> 
<uses-permission android:name="android.permission.READ_CONTACTS" /> 
<uses-permission android:name="android.permission.WRITE_CONTACTS" /> 
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> 
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> 
<uses-permission android:name="android.permission.CHANGE_CONFIGURATION" /> 
<uses-permission android:name="android.permission.WAKE_LOCK" /> 
<uses-permission android:name="android.permission.BLUETOOTH" />
Copy after login


More Android mobile phone obtains the latitude and longitude address of GPS and base station. For code-related articles, please pay attention to the PHP Chinese website!


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Is the company's security software causing the application to fail to run? How to troubleshoot and solve it? Is the company's security software causing the application to fail to run? How to troubleshoot and solve it? Apr 19, 2025 pm 04:51 PM

Troubleshooting and solutions to the company's security software that causes some applications to not function properly. Many companies will deploy security software in order to ensure internal network security. ...

How to elegantly obtain entity class variable names to build database query conditions? How to elegantly obtain entity class variable names to build database query conditions? Apr 19, 2025 pm 11:42 PM

When using MyBatis-Plus or other ORM frameworks for database operations, it is often necessary to construct query conditions based on the attribute name of the entity class. If you manually every time...

How to simplify field mapping issues in system docking using MapStruct? How to simplify field mapping issues in system docking using MapStruct? Apr 19, 2025 pm 06:21 PM

Field mapping processing in system docking often encounters a difficult problem when performing system docking: how to effectively map the interface fields of system A...

How does IntelliJ IDEA identify the port number of a Spring Boot project without outputting a log? How does IntelliJ IDEA identify the port number of a Spring Boot project without outputting a log? Apr 19, 2025 pm 11:45 PM

Start Spring using IntelliJIDEAUltimate version...

How do I convert names to numbers to implement sorting and maintain consistency in groups? How do I convert names to numbers to implement sorting and maintain consistency in groups? Apr 19, 2025 pm 11:30 PM

Solutions to convert names to numbers to implement sorting In many application scenarios, users may need to sort in groups, especially in one...

How to safely convert Java objects to arrays? How to safely convert Java objects to arrays? Apr 19, 2025 pm 11:33 PM

Conversion of Java Objects and Arrays: In-depth discussion of the risks and correct methods of cast type conversion Many Java beginners will encounter the conversion of an object into an array...

How to elegantly get entity class variable name building query conditions when using TKMyBatis for database query? How to elegantly get entity class variable name building query conditions when using TKMyBatis for database query? Apr 19, 2025 pm 09:51 PM

When using TKMyBatis for database queries, how to gracefully get entity class variable names to build query conditions is a common problem. This article will pin...

E-commerce platform SKU and SPU database design: How to take into account both user-defined attributes and attributeless products? E-commerce platform SKU and SPU database design: How to take into account both user-defined attributes and attributeless products? Apr 19, 2025 pm 11:27 PM

Detailed explanation of the design of SKU and SPU tables on e-commerce platforms This article will discuss the database design issues of SKU and SPU in e-commerce platforms, especially how to deal with user-defined sales...

See all articles