如何提示用户打开位置?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何提示用户打开位置?相关的知识,希望对你有一定的参考价值。
我有一个应用程序,当我们点击一个按钮时,应用程序启动带有搜索查询的谷歌地图。但我需要打开位置以提供准确的结果。可能吗?
答案
我理解你的查询是一个代码,应该添加到你的onCreate方法上
LocationManager lm = (LocationManager) getSystemService(LOCATION_SERVICE);
if (!lm.isProviderEnabled(LocationManager.GPS_PROVIDER) ||
!lm.isProviderEnabled(LocationManager.NETWORK_PROVIDER)) {
// Build the alert dialog
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("Location Services Not Active");
builder.setMessage("Please enable Location Services and GPS");
builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialogInterface, int i) {
// Show location settings when the user acknowledges the alert dialog
Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
startActivity(intent);
}
});
Dialog alertDialog = builder.create();
alertDialog.setCanceledOnTouchOutside(false);
alertDialog.show();
}
另一答案
您应该在androidManifest.xml中添加permission。
有关Android权限here的一般信息。
请注意Android 6的权限机制已更改(it became iOS like)。
以上是关于如何提示用户打开位置?的主要内容,如果未能解决你的问题,请参考以下文章
如何提示用户在 VBA 中选择文件位置以将文件合并到一个工作簿中