]> gitweb.fperrin.net Git - Dictionary.git/blobdiff - src/com/hughes/android/dictionary/MyWebView.java
Arrows in UI to display HtmlEntry on Tokens.
[Dictionary.git] / src / com / hughes / android / dictionary / MyWebView.java
diff --git a/src/com/hughes/android/dictionary/MyWebView.java b/src/com/hughes/android/dictionary/MyWebView.java
new file mode 100644 (file)
index 0000000..5f39697
--- /dev/null
@@ -0,0 +1,24 @@
+package com.hughes.android.dictionary;
+
+import android.content.Context;
+import android.util.AttributeSet;
+import android.view.ContextMenu;
+import android.webkit.WebView;
+
+public class MyWebView extends WebView {
+
+    public MyWebView(Context context) {
+        super(context);
+    }
+    
+    public MyWebView(Context context, AttributeSet attrs) {
+        super(context, attrs);
+    }
+
+
+    @Override
+    public void onCreateContextMenu(ContextMenu menu) {
+        super.onCreateContextMenu(menu);
+    }
+
+}