gpt4 book ai didi

android - 如何在 WebView 中显示方向

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

在我的应用程序中,我想使用 WebView 显示谷歌地图中两个地理点之间的方向。我试过了,但它没有显示方向,它只显示标志页。怎么做?

public class android_testing extends Activity {

public WebView webview;
protected ProgressDialog web_pd;
final Handler rb_web_pd_Handler = new Handler();

@Override
public void onCreate(Bundle icicle)
{
super.onCreate(icicle);
setContentView(R.layout.main);

webview = (WebView)findViewById(R.id.wv_direction);
webview.getSettings().setJavaScriptEnabled(true);
webview.getSettings().setPluginsEnabled(true);
webview.getSettings().setDomStorageEnabled(true);
webview.getSettings().setBuiltInZoomControls(true);
webview.getSettings().setSupportZoom(true);
webview.getSettings().setAllowFileAccess(true);

web_pd = ProgressDialog.show(android_testing.this, "", "Please wait...", true);
Thread t = new Thread()
{
public void run()
{
rb_web_pd_Handler.post(checked_LoginResp);
}
};
t.start();

webview.setWebViewClient(new WebViewClient()
{
@Override
public void onReceivedError(WebView view, int errorCode, String description, String failingUrl)
{
// Handle the error
}

public boolean shouldOverrideUrlLoading(WebView view, String url) {
if (url.startsWith("tel:")) {
Intent intent = new Intent(Intent.ACTION_DIAL,
Uri.parse(url));
startActivity(intent);
}else if(url.startsWith("http:") || url.startsWith("https:")) {
view.loadUrl(url);
}
return true;
}
});
float source_lat = 17.493133f;
float source_long = 78.398438f;
float dest_lat = 17.444992f;
float dest_long = 78.379898f;
String page_url ="http://maps.google.com/maps?daddr="+dest_lat+","+dest_long+"&saddr="+source_lat+","+source_long;
System.out.println("URL:"+page_url);
webview.loadUrl(page_url);
}

final Runnable checked_LoginResp = new Runnable()
{
public void run()
{
try
{
webview.setWebChromeClient(new WebChromeClient()
{
public void onProgressChanged(WebView view, int progress)
{
if(progress == 100)
{
web_pd.dismiss();
}
}
});
}
catch(Exception e)
{
e.printStackTrace();
}
}
}; }

是这样显示的

it shows like this

但是我想直接显示方向页。可能吗? enter image description here

最佳答案

阅读这篇文章,它将向您介绍如何在 WebView 中显示 Google Map Directin

Google Map Derection in WebView

关于android - 如何在 WebView 中显示方向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9426243/

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