2017-02-14 73 views
0

一項活動(MainActivity)調用一個片段(MainPage)。該片段旨在打開本地資產webview文件Map.html。它按預期工作,但地圖不能通過指尖移動。當Map.html打開一個瀏覽器時,此功能可用。但是,左上方的縮小分接按鈕確實有效。無法在webview中移動地圖

覆蓋webview的東西,它可以被看到但沒有被刷過?

Map Screenshot

初始AppCompatActivity(支持動作條)由MainActivity給出:

public class MainActivity extends AppCompatActivity implements View.OnClickListener{ 

    //list of private declarations 

    @Override 
    public void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity_main); 

    // a lot of other stuff relating to navigation drawer 

    // calls MainPage Fragment 
    android.support.v4.app.Fragment fragment = new MainPage(); 
       FragmentManager fragmentManager = getSupportFragmentManager(); 
       fragmentManager.beginTransaction() 
         .replace(R.id.content_frame, fragment) 
         .addToBackStack("tag") 
         .commit(); 
    } 
} 

其中用於此的XML被給定爲:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_centerVertical="true" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="horizontal"> 

    <android.support.v4.widget.DrawerLayout 
     xmlns:android="http://schemas.android.com/apk/res/android" 
     android:id="@+id/drawer_layout" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent"> 

    <WebView xmlns:android="http://schemas.android.com/apk/res/android" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:id="@+id/content_frame"> 
    </WebView> 

     <ListView 
      android:id="@+id/left_drawer" 
      android:layout_width="240dp" 
      android:layout_height="match_parent" 
      android:layout_gravity="start" 
      android:choiceMode="singleChoice" 
      android:divider="@android:color/transparent" 
      android:dividerHeight="0dp" 
      android:background="#111"> 
     </ListView> 

    </android.support.v4.widget.DrawerLayout> 

</LinearLayout> 

最終調用的MainPage,給定如:

public class MainPage extends android.support.v4.app.Fragment implements GeolocationPermissions.Callback { 

    public MainPage() { 
    } 

    @Override 
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { 
     View rootView = inflater.inflate(R.layout.activity_main, container, false); 
     WebView webview = (WebView) rootView.findViewById(R.id.content_frame); 
     webview.getSettings().setJavaScriptEnabled(true); 
     webview.getSettings().setJavaScriptCanOpenWindowsAutomatically(true); 
     webview.getSettings().setGeolocationEnabled(true); 
     GeoClient geo = new GeoClient(); 
     webview.setWebChromeClient(geo); 
     String origin = ""; 
     geo.onGeolocationPermissionsShowPrompt(origin, this); 
     webview.loadUrl("file:///android_asset/Map.html"); 
     return rootView; 
    } 

回答

0

您可能需要設置onclicklistener。對於Google地圖,這是我做到的。它可能類似。

添加implements,@override函數,並設置onclick監聽器。我不確定這是否會起作用,因爲您在某些時候使用了HTML。

public class MainActivity extends FragmentActivity implements View.OnClickListener, 
     GoogleMap.OnMapClickListener { 

然後,當您啓動它時,設置onmap點擊偵聽器。

gMap.setOnMapClickListener(this);// add the listener for click on gmap object 

最後,添加此@override:

@Override 
public void onMapClick(LatLng point) { 
//What code if any happens when user clicks on map 
}