【问题标题】:android - How to show the directions in web viewandroid - 如何在网页视图中显示方向
【发布时间】:2012-02-24 06:11:43
【问题描述】:

在我的应用程序中,我想使用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();
         }
     }      
 };          }

它是这样显示的

但我想直接显示方向页。有可能吗?

【问题讨论】:

    标签: android google-maps webview


    【解决方案1】:

    阅读这篇文章,它将告诉您如何在网页视图中显示 Google Map Directin

    Google Map Derection in WebView

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2019-11-20
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2011-08-17
      相关资源
      最近更新 更多