Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone



Clound SSD Virtual Server

Android Google Map : Check Enabled Location Services

Android Google Map : Check Enabled Location Services ในการใช้งาน Map บน Android App หรือ Application ทั่ว ๆ ไปบน Smartphone , Tablet สิ่งที่เราจะพบเจออยู่คือ โปรแกรมจะต้องให้เราทำการ Allow หรือ Enabled ตัว Location Services บนเครื่อง Android ด้วย เพราะ Services ตัวนี้จะเป็นตัวระบุตำแหน่งปัจจุบันของเครื่องที่เปิดใช้งานด้วย จะเห็นว่าหลาย ๆ App จะไม่ทำงานเมื่อเราไม่ยอมเปิด Services ตัวนี้ ซึ่งมันเป็นดาบสองคม ฉะนั้นการที่จะเปิดหรือ Allow ให้ App ต่าง ๆ ที่จะต้องมั่นใจว่า App นั้น ๆ ไม่ได้นำ Services นั้น ๆ ไปใช้งานในทางที่ไม่ดี



Android Google Map : Check Enable Location Services


สำหรับตัวอย่างและ Code นี้รองรับการเขียนทั้งบนโปรแกรม Eclipse และ Android Studio

ใน AndroidManifest.xml เพิ่ม Permission ดังนี้
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />


ในการอ่าน Location Services สามารถอ้างถึงได้จาก GPS_PROVIDER และ NETWORK_PROVIDER

GPS_PROVIDER
isGPS_Enabled = lm.isProviderEnabled(LocationManager.GPS_PROVIDER);

NETWORK_PROVIDER
isNetwork_Enabled = lm.isProviderEnabled(LocationManager.NETWORK_PROVIDER);


Example 1 : ตัวอย่างการเขียน Android App ตรวจสอบว่า Location Services ได้เปิดไว้หรือไม่

Android Google Map : Check Enable Location Services

activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
          android:id="@+id/googleMap"
          android:layout_width="fill_parent"
          android:layout_height="fill_parent"
          android:name="com.google.android.gms.maps.SupportMapFragment"/>


MainActivity.java
package com.myapp;

import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.SupportMapFragment;

import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.location.LocationManager;
import android.os.Bundle;
import android.provider.Settings;
import android.support.v4.app.FragmentActivity;

public class MainActivity extends FragmentActivity {

	// Google Map
	private GoogleMap googleMap;

	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);

		googleMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.googleMap)).getMap();

		final AlertDialog.Builder adb = new AlertDialog.Builder(this);

		LocationManager lm = (LocationManager) this.getSystemService(Context.LOCATION_SERVICE);
		boolean isGPS_Enabled = false;
		boolean isNetwork_Enabled = false;

		try {
			isGPS_Enabled = lm.isProviderEnabled(LocationManager.GPS_PROVIDER);
		} catch (Exception ex) { }

		try {
			isNetwork_Enabled = lm.isProviderEnabled(LocationManager.NETWORK_PROVIDER);
		} catch (Exception ex) { }

		if (!isGPS_Enabled && !isNetwork_Enabled) {

			adb.setTitle("Warning Location Services!!");
			adb.setMessage("Please Enable Location Services.");
			adb.setNegativeButton("Cancel", null);
			adb.setPositiveButton("Ok", new AlertDialog.OnClickListener() {
				public void onClick(DialogInterface dialog, int arg1) {
					// TODO Auto-generated method stub
					Intent myIntent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
					startActivity(myIntent);
				}
			});
			adb.show();

		}

	}

}

Screenshot

Android Google Map : Check Enable Location Services

App จะแจ้าว่า Location Services ยังไม่ถูกเปิดใช้งาน ต้องการที่จะเปิดหรือไม่ ถ้าต้องการให้คลิกที่ OK

Android Google Map : Check Enable Location Services

โปรแกรมจะ Intent มายัง Location Services ของเครื่อง เพื่อให้ทำการเปิดใช้งาน






   
Share


ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท


ลองใช้ค้นหาข้อมูล


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2015-11-21 22:50:19 / 2015-11-23 13:55:08
  Download : No files
 Sponsored Links / Related

 
Android Google Map (Step by Step)
Rating :

 
Android Google Map : Focus, Zoom Level , Map Type
Rating :

 
Android Google Map : Change Map Type (Normal, Satellite, Hybrid and Terrain)
Rating :

 
Android Google Map : Get Current Location (Latitude, Longitude)
Rating :

 
Android Google Map : Marker Location (Latitude , Longitude)
Rating :

 
Android Google Map : Adding Multiple Marker (Latitude, Longitude)
Rating :

 
Android Google Map : Marker from Current Location (LocationChanged)
Rating :

 
Android Google Map : Get Address Name from Latitude,Longitude (Geocoder)
Rating :

 
Android Google Map : Search and Find Location
Rating :

 
Android Google Map : Marker Location from PHP/MySQL (JSON)
Rating :


ThaiCreate.Com Forum


Comunity Forum Free Web Script
Jobs Freelance Free Uploads
Free Web Hosting Free Tools

สอน PHP ผ่าน Youtube ฟรี
สอน Android การเขียนโปรแกรม Android
สอน Windows Phone การเขียนโปรแกรม Windows Phone 7 และ 8
สอน iOS การเขียนโปรแกรม iPhone, iPad
สอน Java การเขียนโปรแกรม ภาษา Java
สอน Java GUI การเขียนโปรแกรม ภาษา Java GUI
สอน JSP การเขียนโปรแกรม ภาษา Java
สอน jQuery การเขียนโปรแกรม ภาษา jQuery
สอน .Net การเขียนโปรแกรม ภาษา .Net
Free Tutorial
สอน Google Maps Api
สอน Windows Service
สอน Entity Framework
สอน Android
สอน Java เขียน Java
Java GUI Swing
สอน JSP (Web App)
iOS (iPhone,iPad)
Windows Phone
Windows Azure
Windows Store
Laravel Framework
Yii PHP Framework
สอน jQuery
สอน jQuery กับ Ajax
สอน PHP OOP (Vdo)
Ajax Tutorials
SQL Tutorials
สอน SQL (Part 2)
JavaScript Tutorial
Javascript Tips
VBScript Tutorial
VBScript Validation
Microsoft Access
MySQL Tutorials
-- Stored Procedure
MariaDB Database
SQL Server Tutorial
SQL Server 2005
SQL Server 2008
SQL Server 2012
-- Stored Procedure
Oracle Database
-- Stored Procedure
SVN (Subversion)
แนวทางการทำ SEO
ปรับแต่งเว็บให้โหลดเร็ว


Hit Link
   







Load balance : Server 02
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่