gpt4 book ai didi

android - 使用 phonegap 打开 Android 位置设置

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:26:22 24 4
gpt4 key购买 nike

我正在通过 phonegap 使用用户的地理定位。示例如下所示。 (安卓)

  // onSuccess Callback
// This method accepts a Position object, which contains the
// current GPS coordinates
//
var onSuccess = function(position) {
var element = document.getElementById('geolocation');
element.innerHTML = 'Latitude: '+ position.coords.latitude +'<br/>' +
'Longitude: ' + position.coords.longitude +<br/>' +
'Altitude: ' + position.coords.altitude +'<br/>' +
'Accuracy: ' + position.coords.accuracy +<br/>' +
'Altitude Accuracy: ' + position.coords.altitudeAccuracy +'<br/>' +
'Heading: ' + position.coords.heading +<br/>' +
'timestamp: ' + position.timestamp +<br/>';
};

// onError Callback receives a PositionError object
//
function onError(error) {
alert('code: ' + error.code + '\n' +
'message: ' + error.message + '\n');
}

navigator.geolocation.getCurrentPosition(onSuccess, onError);

是否有可能(使用 phonegap)在错误功能上打开对话框,这将引导我们进行位置设置(用户将能够让我访问他的位置)而不是警报,就像在谷歌地图 android 应用程序中所做的那样(下面的屏幕截图)? like this

最佳答案

我会照您说的做,创建对话框,然后将它们发送到设置;我假设您已经设法在适当的时间调用了 onError fcn,那么

AlertDialog.Builder builder = new AlertDialog.Builder(context);
builder.setTitle(getString(R.string.loc_man));
builder.setMessage(getString(R.string.ask_for_gps));
builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which)
{
Intent i = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
startActivity(i);
}
});
builder.setNegativeButton("No", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which)
{
Toast.makeText(getBaseContext(), getString(R.string.gps_no), Toast.LENGTH_SHORT).show();
finish();
}
});
builder.create().show();

您还需要做的是从您的 javascript 调用此函数...哦,这很有趣,b/c 您将同时使用很多非常酷的 java 概念,而我只使用过Cordova,但这应该都是一样的 =] 请记住,如果您在我的代码中看到一些 undefined variable ,您可能应该假设它是一个字段。

所以假设您确定这段代码会出错,让我们组成一个接口(interface)名称; “Android”是一个非常合乎逻辑的

function onError(error) {
alert('code: ' + error.code + '\n' +
'message: ' + error.message + '\n');
Android.TurnOnTuneIn();
}

现在回到您的 Java,在您的 phonegap 应用程序周围 grep 以查找它具有“WebView”的位置;如果它与我的 cordova 实现类似,它将在某处包含 webview.loadUrl() 。打开定义此类的文件;这是编辑/放置我们在这个问题上正在处理的所有 java 的工具。在“public class PhoneGapActivity extends Activity”之类的内容之后,插入“implements CordovaInterface”(我认为不是 PhoneGapInterface);如果您的 IDE 为您提供了实现抽象方法的选项的错误,请敲击它。

确保WebView是类中的一个域,而不是方法中的一个变量,然后

    //CordovaWebView should work, but maybe it needs to be PhoneGapWebView, you're smart, you'll figure it out =]
webView = (CordovaWebView) findViewById(R.id.data_window);
webView.getSettings().setJavaScriptEnabled(true);
webView.getSettings().setBuiltInZoomControls(false);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED, WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED); //this always seemed like a good idea to me
webView.addJavascriptInterface(new JSInterface(this), "Android"); //see the interface name? =]
//this line should already be in this class, just re-use it
webView.loadUrl("file:///"+getContext().getFilesDir().toString()+"/index.html");

现在制作那个界面:

public class JSInterface {
// these fcns are exposed to the WebView
private Context context;
public JSInterface(Context context)
{
context = context;
}
@JavascriptInterface
public void doEchoTest(String echo)
{
//A useful test; I usually use it in a webViewClient that runs the function that calls this in my javascript with this:
//webView.loadUrl("javascript:echo('"echo!!!"');"); //this exact formatting
//but webViewClient is outside the scope of your question and would just confuse the
//issue; however, you may need to implement
//webViewClient with an delaying asynctask to seperatly run the js you loaded with the webpage,
//again, I used to do this ground-up, and phoneGap Might Just Work.

Toast.makeText(context, echo, Toast.LENGTH_SHORT).show();
}
@JavascriptInterface
public void TurnOnTuneIn
{
aMethodThatHasThatFirstBitOfCodeIPublished();
}
}

我喜欢界面 =]

对于您的目的来说,其余的都是样板文件(但是玩起来还是很有趣!),您可能不需要太多(如果有的话)。如果您注意到我放在顶部的方法没有返回您想要的方式,您可以使用 startActivityForResult 方法来做同样的事情,我敢打赌它会很好地工作;注意“ super ”。调用 Override ;您只需要 Intent (就像我在顶部向您展示的那样)和一些用于接收结果的引用号……再次,超出了问题的范围。另外,我包括了对 ResultCallback 的支持 b/c 一个和我一起工作的人使用它,但我自己不使用它。

@Override
public Activity getActivity(){
return this;
}

@Override
public void setActivityResultCallback(CordovaPlugin plugin) {
this.activityResultCallback = plugin;
}

public void startActivityForResult(CordovaPlugin command, Intent intent, int requestCode) {
this.activityResultCallback = command;
this.activityResultKeepRunning = this.keepRunning;

// If multitasking turned on, then disable it for activities that return results
if (command != null) {
this.keepRunning = false;
}

// Start activity
super.startActivityForResult(intent, requestCode);
}

@Override
public void cancelLoadUrl(){
// no op
}

@Override
public Object onMessage(String id, Object data) {
LOG.d("is", "onMessage(" + id + "," + data + ")");
if ("exit".equals(id)) {
super.finish();
}
return null;
}
@Override
public void onPause() {
Method pause = null; // Pauses the webview.
try {
pause = WebView.class.getMethod("onPause");
}
catch (SecurityException e) { }
catch (NoSuchMethodException e) { }
if (pause != null) {
try { pause.invoke(webView);
}
catch (InvocationTargetException e) { }
catch (IllegalAccessException e) { }
}
else {
// No such method. Stores the current URL.
suspendUrl = webView.getUrl(); // And loads a URL without any processing.
webView.loadUrl("file:///android_asset/nothing.html");
}
super.onPause();
}

@Override
public void onResume() {
super.onResume();
Method resume = null; // Resumes the webview.
try {
resume = WebView.class.getMethod("onResume");
}
catch (SecurityException e) { }
catch (NoSuchMethodException e) { }
if (resume != null) {
try {
resume.invoke(webView);
}
catch (InvocationTargetException e) { }
catch (IllegalAccessException e) { }
}
else if (webView != null) { // No such method. Restores the suspended URL.
if (suspendUrl == null) {
//this should be wherever you have your page; you can probably copy it from what is there now.
webView.loadUrl("file:///"+getContext().getFilesDir().toString()+"/index.html");
}
else {
webView.loadUrl(suspendUrl);
}
}
}

希望能让你走得更远;如果您还没有使用它,请记住使用版本控制,这样您就可以鲁莽地进行编辑了!

gl 高频

关于android - 使用 phonegap 打开 Android 位置设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22193309/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com