]> gitweb.fperrin.net Git - Dictionary.git/blobdiff - src/com/hughes/android/dictionary/DictionaryActivity.java
Added help activity, num bytes in download, index info (but screwed up),
[Dictionary.git] / src / com / hughes / android / dictionary / DictionaryActivity.java
index a3cc390e3991936423de0427d6dd5177d219606f..66aee42061b2aa9267dc54c712527eaf7b335ee7 100644 (file)
@@ -21,11 +21,16 @@ import java.io.PrintWriter;
 import java.io.RandomAccessFile;\r
 import java.text.SimpleDateFormat;\r
 import java.util.Date;\r
+import java.util.List;\r
 import java.util.concurrent.Executor;\r
 import java.util.concurrent.Executors;\r
 import java.util.concurrent.ThreadFactory;\r
 import java.util.concurrent.atomic.AtomicBoolean;\r
+import java.util.regex.Matcher;\r
+import java.util.regex.Pattern;\r
 \r
+import android.app.Activity;\r
+import android.app.Dialog;\r
 import android.app.ListActivity;\r
 import android.content.Context;\r
 import android.content.Intent;\r
@@ -39,6 +44,7 @@ import android.text.Editable;
 import android.text.Selection;\r
 import android.text.Spannable;\r
 import android.text.TextWatcher;\r
+import android.text.method.LinkMovementMethod;\r
 import android.text.style.StyleSpan;\r
 import android.util.Log;\r
 import android.util.TypedValue;\r
@@ -48,8 +54,10 @@ import android.view.KeyEvent;
 import android.view.Menu;\r
 import android.view.MenuItem;\r
 import android.view.MenuItem.OnMenuItemClickListener;\r
+import android.view.MotionEvent;\r
 import android.view.View;\r
 import android.view.View.OnClickListener;\r
+import android.view.View.OnLongClickListener;\r
 import android.view.ViewGroup;\r
 import android.view.inputmethod.InputMethodManager;\r
 import android.widget.AdapterView;\r
@@ -57,6 +65,7 @@ import android.widget.AdapterView.AdapterContextMenuInfo;
 import android.widget.BaseAdapter;\r
 import android.widget.Button;\r
 import android.widget.EditText;\r
+import android.widget.LinearLayout;\r
 import android.widget.ListAdapter;\r
 import android.widget.ListView;\r
 import android.widget.TableLayout;\r
@@ -64,23 +73,23 @@ import android.widget.TableRow;
 import android.widget.TextView;\r
 import android.widget.Toast;\r
 \r
+import com.hughes.android.dictionary.DictionaryInfo.IndexInfo;\r
 import com.hughes.android.dictionary.engine.Dictionary;\r
 import com.hughes.android.dictionary.engine.Index;\r
-import com.hughes.android.dictionary.engine.Language;\r
 import com.hughes.android.dictionary.engine.PairEntry;\r
 import com.hughes.android.dictionary.engine.PairEntry.Pair;\r
 import com.hughes.android.dictionary.engine.RowBase;\r
 import com.hughes.android.dictionary.engine.TokenRow;\r
 import com.hughes.android.dictionary.engine.TransliteratorManager;\r
-import com.hughes.android.util.PersistentObjectCache;\r
+import com.hughes.android.util.IntentLauncher;\r
+import com.hughes.android.util.NonLinkClickableSpan;\r
 \r
 public class DictionaryActivity extends ListActivity {\r
 \r
   static final String LOG = "QuickDic";\r
   \r
-  static final int VIBRATE_MILLIS = 100;\r
-\r
-  int dictIndex = 0;\r
+  DictionaryApplication application;\r
+  File dictFile = null;\r
   RandomAccessFile dictRaf = null;\r
   Dictionary dictionary = null;\r
   int indexIndex = 0;\r
@@ -96,6 +105,7 @@ public class DictionaryActivity extends ListActivity {
   });\r
   private SearchOperation currentSearchOperation = null;\r
 \r
+  C.Theme theme = C.Theme.LIGHT;\r
   int fontSizeSp;\r
   EditText searchText;\r
   Button langButton;\r
@@ -110,62 +120,48 @@ public class DictionaryActivity extends ListActivity {
   \r
   final SearchTextWatcher searchTextWatcher = new SearchTextWatcher();\r
 \r
-  //private Vibrator vibrator = null;\r
-  \r
   public DictionaryActivity() {\r
   }\r
   \r
-  public static Intent getIntent(final Context context, final int dictIndex, final int indexIndex, final String searchToken) {\r
-    setDictionaryPrefs(context, dictIndex, indexIndex, searchToken);\r
+  public static Intent getLaunchIntent(final File dictFile, final int indexIndex, final String searchToken) {\r
     final Intent intent = new Intent();\r
     intent.setClassName(DictionaryActivity.class.getPackage().getName(), DictionaryActivity.class.getName());\r
+    intent.putExtra(C.DICT_FILE, dictFile.getPath());\r
+    intent.putExtra(C.INDEX_INDEX, indexIndex);\r
+    intent.putExtra(C.SEARCH_TOKEN, searchToken);\r
     return intent;\r
   }\r
   \r
-  // TODO: Can we trigger an App restart when the preferences activity gets opened?\r
-  // TODO: fix these...\r
-\r
   @Override\r
   protected void onSaveInstanceState(final Bundle outState) {\r
     super.onSaveInstanceState(outState);\r
-    setDictionaryPrefs(this, dictIndex, indexIndex, searchText.getText().toString());\r
+    outState.putString(C.SEARCH_TOKEN, searchText.getText().toString());\r
   }\r
 \r
-  public static void setDictionaryPrefs(final Context context,\r
-      final int dictIndex, final int indexIndex, final String searchToken) {\r
-    final SharedPreferences.Editor prefs = PreferenceManager.getDefaultSharedPreferences(context).edit();\r
-    prefs.putInt(C.DICT_INDEX, dictIndex);\r
-    prefs.putInt(C.INDEX_INDEX, indexIndex);\r
-    prefs.putString(C.SEARCH_TOKEN, searchToken);\r
-    prefs.commit();\r
-  }\r
-  \r
-  public static void clearDictionaryPrefs(final Context context) {\r
-    final SharedPreferences.Editor prefs = PreferenceManager\r
-        .getDefaultSharedPreferences(context).edit();\r
-    prefs.remove(C.DICT_INDEX);\r
-    prefs.remove(C.INDEX_INDEX);\r
-    prefs.remove(C.SEARCH_TOKEN);\r
-    prefs.commit();\r
-    Log.d(LOG, "Removed default dictionary prefs.");\r
+  @Override\r
+  protected void onRestoreInstanceState(final Bundle outState) {\r
+    super.onRestoreInstanceState(outState);\r
+    setSearchText(outState.getString(C.SEARCH_TOKEN));\r
   }\r
 \r
   @Override\r
-  public void onCreate(Bundle savedInstanceState) {\r
+  public void onCreate(Bundle savedInstanceState) {    \r
     Log.d(LOG, "onCreate:" + this);\r
-    ((DictionaryApplication)getApplication()).applyTheme(this);\r
     super.onCreate(savedInstanceState);\r
+\r
+    application = (DictionaryApplication) getApplication();\r
+    theme = application.getSelectedTheme();\r
+\r
+    // Clear them so that if something goes wrong, we won't relaunch.\r
+    clearDictionaryPrefs(this);\r
     \r
-    final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);\r
+    final Intent intent = getIntent();\r
+    dictFile = new File(intent.getStringExtra(C.DICT_FILE));\r
     \r
     try {\r
-      PersistentObjectCache.init(this);\r
-      QuickDicConfig quickDicConfig = PersistentObjectCache.init(\r
-          this).read(C.DICTIONARY_CONFIGS, QuickDicConfig.class);\r
-      dictIndex = prefs.getInt(C.DICT_INDEX, 0) ;\r
-      final DictionaryInfo dictionaryConfig = quickDicConfig.dictionaryConfigs.get(dictIndex);\r
-      this.setTitle("QuickDic: " + dictionaryConfig.name);\r
-      dictRaf = new RandomAccessFile(dictionaryConfig.localFile, "r");\r
+      final String name = application.getDictionaryName(dictFile.getName());\r
+      this.setTitle("QuickDic: " + name);\r
+      dictRaf = new RandomAccessFile(dictFile, "r");\r
       dictionary = new Dictionary(dictRaf); \r
     } catch (Exception e) {\r
       Log.e(LOG, "Unable to load dictionary.", e);\r
@@ -178,16 +174,16 @@ public class DictionaryActivity extends ListActivity {
         dictRaf = null;\r
       }\r
       Toast.makeText(this, getString(R.string.invalidDictionary, "", e.getMessage()), Toast.LENGTH_LONG);\r
-      startActivity(DictionaryManagerActivity.getIntent(this));\r
+      startActivity(DictionaryManagerActivity.getLaunchIntent());\r
       finish();\r
       return;\r
     }\r
 \r
-    indexIndex = prefs.getInt(C.INDEX_INDEX, 0) % dictionary.indices.size();\r
     Log.d(LOG, "Loading index.");\r
+    indexIndex = intent.getIntExtra(C.INDEX_INDEX, 0) % dictionary.indices.size();\r
     index = dictionary.indices.get(indexIndex);\r
     setListAdapter(new IndexAdapter(index));\r
-\r
+    \r
     // Pre-load the collators.\r
     searchExecutor.execute(new Runnable() {\r
       public void run() {\r
@@ -219,9 +215,11 @@ public class DictionaryActivity extends ListActivity {
       }\r
     });\r
     \r
-    final String fontSize = prefs.getString(getString(R.string.fontSizeKey), "12");\r
+    final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);\r
+    \r
+    final String fontSize = prefs.getString(getString(R.string.fontSizeKey), "14");\r
     try {\r
-      fontSizeSp = Integer.parseInt(fontSize);\r
+      fontSizeSp = Integer.parseInt(fontSize.trim());\r
     } catch (NumberFormatException e) {\r
       fontSizeSp = 12;\r
     }\r
@@ -255,6 +253,13 @@ public class DictionaryActivity extends ListActivity {
         onLanguageButton();\r
       }\r
     });\r
+    langButton.setOnLongClickListener(new OnLongClickListener() {\r
+      @Override\r
+      public boolean onLongClick(View v) {\r
+        onLanguageButtonLongClick(v.getContext());\r
+        return true;\r
+      }\r
+    });\r
     updateLangButton();\r
     \r
     final Button upButton = (Button) findViewById(R.id.UpButton);\r
@@ -300,6 +305,8 @@ public class DictionaryActivity extends ListActivity {
       // vibrator = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE);\r
     //}\r
     Log.d(LOG, "wordList=" + wordList + ", saveOnlyFirstSubentry=" + saveOnlyFirstSubentry);\r
+    \r
+    setDictionaryPrefs(this, dictFile, indexIndex, searchText.getText().toString());\r
   }\r
   \r
   @Override\r
@@ -316,6 +323,24 @@ public class DictionaryActivity extends ListActivity {
   protected void onPause() {\r
     super.onPause();\r
   }\r
+  \r
+  private static void setDictionaryPrefs(final Context context,\r
+      final File dictFile, final int indexIndex, final String searchToken) {\r
+    final SharedPreferences.Editor prefs = PreferenceManager.getDefaultSharedPreferences(context).edit();\r
+    prefs.putString(C.DICT_FILE, dictFile.getPath());\r
+    prefs.putInt(C.INDEX_INDEX, indexIndex);\r
+    prefs.putString(C.SEARCH_TOKEN, searchToken);\r
+    prefs.commit();\r
+  }\r
+\r
+  private static void clearDictionaryPrefs(final Context context) {\r
+    final SharedPreferences.Editor prefs = PreferenceManager.getDefaultSharedPreferences(context).edit();\r
+    prefs.remove(C.DICT_FILE);\r
+    prefs.remove(C.INDEX_INDEX);\r
+    prefs.remove(C.SEARCH_TOKEN);\r
+    prefs.commit();\r
+  }\r
+\r
 \r
   @Override\r
   protected void onDestroy() {\r
@@ -323,7 +348,6 @@ public class DictionaryActivity extends ListActivity {
     if (dictRaf == null) {\r
       return;\r
     }\r
-    setDictionaryPrefs(this, dictIndex, indexIndex, searchText.getText().toString());\r
     \r
     // Before we close the RAF, we have to wind the current search down.\r
     if (currentSearchOperation != null) {\r
@@ -365,7 +389,7 @@ public class DictionaryActivity extends ListActivity {
   }\r
   \r
   void updateLangButton() {\r
-    langButton.setText(index.shortName.toUpperCase());\r
+    langButton.setText(index.shortName);\r
   }\r
 \r
   void onLanguageButton() {\r
@@ -373,13 +397,97 @@ public class DictionaryActivity extends ListActivity {
       currentSearchOperation.interrupted.set(true);\r
       currentSearchOperation = null;\r
     }\r
+    changeIndex((indexIndex + 1)% dictionary.indices.size());\r
+  }\r
+  \r
+  static class OpenIndexButton extends Button implements OnClickListener {\r
+\r
+    final Activity activity;\r
+    final Intent intent;\r
+\r
+    public OpenIndexButton(final Context context, final Activity activity, final String text, final Intent intent) {\r
+      super(context);\r
+      this.activity = activity;\r
+      this.intent = intent;\r
+      setOnClickListener(this);\r
+      setText(text, BufferType.NORMAL);\r
+    }\r
+\r
+    @Override\r
+    public void onClick(View v) {\r
+      activity.finish();\r
+      getContext().startActivity(intent);\r
+    }\r
+    \r
+  }\r
+\r
+  void onLanguageButtonLongClick(final Context context) {\r
+    final Dialog dialog = new Dialog(context);\r
+    dialog.setContentView(R.layout.select_dictionary_dialog);\r
+    dialog.setTitle(R.string.selectDictionary);\r
+\r
+    final List<DictionaryInfo> installedDicts = ((DictionaryApplication)getApplication()).getUsableDicts();\r
+    ListView listView = (ListView) dialog.findViewById(android.R.id.list);\r
+    listView.setAdapter(new BaseAdapter() {\r
+      @Override\r
+      public View getView(int position, View convertView, ViewGroup parent) {\r
+        final LinearLayout result = new LinearLayout(parent.getContext());\r
+        final DictionaryInfo dictionaryInfo = getItem(position);\r
+        for (int i = 0; i < dictionaryInfo.indexInfos.size(); ++i) {\r
+          final IndexInfo indexInfo = dictionaryInfo.indexInfos.get(i);\r
+          final Button button = new Button(parent.getContext());\r
+          String name = application.getLanguageName(indexInfo.shortName);\r
+          if (name == null) {\r
+            name = indexInfo.shortName;\r
+          }\r
+          button.setText(name);\r
+          final IntentLauncher intentLauncher = new IntentLauncher(parent.getContext(), getLaunchIntent(application.getPath(dictionaryInfo.uncompressedFilename), i, "")) {\r
+            @Override\r
+            protected void onGo() {\r
+              dialog.dismiss();\r
+              DictionaryActivity.this.finish();\r
+            };\r
+          };\r
+          button.setOnClickListener(intentLauncher);\r
+          \r
+          final LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);\r
+          layoutParams.width = 0;\r
+          layoutParams.weight = 1.0f;\r
+          button.setLayoutParams(layoutParams);\r
+\r
+          result.addView(button);\r
+        }\r
+        return result;\r
+      }\r
+      \r
+      @Override\r
+      public long getItemId(int position) {\r
+        return position;\r
+      }\r
+      \r
+      @Override\r
+      public DictionaryInfo getItem(int position) {\r
+        return installedDicts.get(position);\r
+      }\r
+      \r
+      @Override\r
+      public int getCount() {\r
+        return installedDicts.size();\r
+      }\r
+    });\r
     \r
-    indexIndex = (indexIndex + 1) % dictionary.indices.size();\r
+    dialog.show();\r
+  }\r
+\r
+\r
+  private void changeIndex(final int newIndex) {\r
+    indexIndex = newIndex;\r
     index = dictionary.indices.get(indexIndex);\r
     indexAdapter = new IndexAdapter(index);\r
-    Log.d(LOG, "onLanguageButton, newLang=" + index.longName);\r
+    Log.d(LOG, "changingIndex, newLang=" + index.longName);\r
     setListAdapter(indexAdapter);\r
     updateLangButton();\r
+    searchText.requestFocus();  // Otherwise, nothing may happen.\r
     onSearchTextChange(searchText.getText().toString());\r
   }\r
   \r
@@ -412,53 +520,19 @@ public class DictionaryActivity extends ListActivity {
   \r
   @Override\r
   public boolean onCreateOptionsMenu(final Menu menu) {\r
-    \r
-    {\r
-      final MenuItem preferences = menu.add(getString(R.string.preferences));\r
-      preferences.setOnMenuItemClickListener(new OnMenuItemClickListener() {\r
-        public boolean onMenuItemClick(final MenuItem menuItem) {\r
-          PreferenceActivity.prefsMightHaveChanged = true;\r
-          startActivity(new Intent(DictionaryActivity.this,\r
-              PreferenceActivity.class));\r
-          return false;\r
-        }\r
-      });\r
-    }\r
+    application.onCreateGlobalOptionsMenu(this, menu);\r
 \r
     {\r
-      final MenuItem dictionaryList = menu.add(getString(R.string.dictionaryList));\r
+      final MenuItem dictionaryList = menu.add(getString(R.string.dictionaryManager));\r
       dictionaryList.setOnMenuItemClickListener(new OnMenuItemClickListener() {\r
         public boolean onMenuItemClick(final MenuItem menuItem) {\r
-          startActivity(DictionaryManagerActivity.getIntent(DictionaryActivity.this));\r
+          startActivity(DictionaryManagerActivity.getLaunchIntent());\r
           finish();\r
           return false;\r
         }\r
       });\r
     }\r
 \r
-    {\r
-      final MenuItem dictionaryEdit = menu.add(getString(R.string.editDictionary));\r
-      dictionaryEdit.setOnMenuItemClickListener(new OnMenuItemClickListener() {\r
-        public boolean onMenuItemClick(final MenuItem menuItem) {\r
-          final Intent intent = DictionaryEditActivity.getIntent(dictIndex);\r
-          startActivity(intent);\r
-          return false;\r
-        }\r
-      });\r
-    }\r
-\r
-    {\r
-      final MenuItem about = menu.add(getString(R.string.about));\r
-      about.setOnMenuItemClickListener(new OnMenuItemClickListener() {\r
-        public boolean onMenuItemClick(final MenuItem menuItem) {\r
-          final Intent intent = new Intent().setClassName(AboutActivity.class\r
-              .getPackage().getName(), AboutActivity.class.getCanonicalName());\r
-          startActivity(intent);\r
-          return false;\r
-        }\r
-      });\r
-    }\r
-\r
     return true;\r
   }\r
 \r
@@ -488,6 +562,21 @@ public class DictionaryActivity extends ListActivity {
         return false;\r
       }\r
     });\r
+    \r
+    if (selectedSpannableText != null) {\r
+      final String selectedText = selectedSpannableText;\r
+      final MenuItem searchForSelection = menu.add(getString(R.string.searchForSelection, selectedSpannableText));\r
+      searchForSelection.setOnMenuItemClickListener(new OnMenuItemClickListener() {\r
+        public boolean onMenuItemClick(MenuItem item) {\r
+          if (indexIndex != selectedSpannableIndex) {\r
+            changeIndex(selectedSpannableIndex);\r
+          }\r
+          setSearchText(selectedText);\r
+          return false;\r
+        }\r
+      });\r
+    }\r
+    \r
 \r
   }\r
   \r
@@ -553,14 +642,13 @@ public class DictionaryActivity extends ListActivity {
   public boolean onKeyDown(final int keyCode, final KeyEvent event) {\r
     if (event.getUnicodeChar() != 0) {\r
       if (!searchText.hasFocus()) {\r
-        searchText.setText("" + (char) event.getUnicodeChar());\r
-        onSearchTextChange(searchText.getText().toString());\r
-        searchText.requestFocus();\r
-        Selection.moveToRightEdge(searchText.getText(), searchText.getLayout());\r
+        setSearchText("" + (char) event.getUnicodeChar());\r
       }\r
       return true;\r
     }\r
     if (keyCode == KeyEvent.KEYCODE_BACK) {\r
+      Log.d(LOG, "Clearing dictionary prefs.");\r
+      DictionaryActivity.clearDictionaryPrefs(this);\r
     }\r
     if (keyCode == KeyEvent.KEYCODE_ENTER) {\r
       Log.d(LOG, "Trying to hide soft keyboard.");\r
@@ -571,6 +659,13 @@ public class DictionaryActivity extends ListActivity {
     return super.onKeyDown(keyCode, event);\r
   }\r
 \r
+  private void setSearchText(final String text) {\r
+    searchText.setText(text);\r
+    searchText.requestFocus();\r
+    onSearchTextChange(searchText.getText().toString());\r
+    Selection.moveToRightEdge(searchText.getText(), searchText.getLayout());\r
+  }\r
+\r
 \r
   // --------------------------------------------------------------------------\r
   // SearchOperation\r
@@ -693,51 +788,60 @@ public class DictionaryActivity extends ListActivity {
     }\r
 \r
     @Override\r
-    public View getView(int position, View convertView, ViewGroup parent) {\r
+    public View getView(int position, final View convertView, ViewGroup parent) {\r
       final RowBase row = index.rows.get(position);\r
       if (row instanceof PairEntry.Row) {\r
-        return getView((PairEntry.Row) row, parent);\r
+        return getView((PairEntry.Row) row, parent, convertView);\r
       } else if (row instanceof TokenRow) {\r
-        return getView((TokenRow) row, parent);\r
+        return getView((TokenRow) row, parent, convertView);\r
       } else {\r
         throw new IllegalArgumentException("Unsupported Row type: " + row.getClass());\r
       }\r
     }\r
 \r
-    private View getView(PairEntry.Row row, ViewGroup parent) {\r
+    private View getView(PairEntry.Row row, ViewGroup parent, final View convertView) {\r
       final TableLayout result = new TableLayout(parent.getContext());\r
       final PairEntry entry = row.getEntry();\r
       final int rowCount = entry.pairs.size();\r
       for (int r = 0; r < rowCount; ++r) {\r
         final TableRow tableRow = new TableRow(result.getContext());\r
 \r
-        TextView column1 = new TextView(tableRow.getContext());\r
-        TextView column2 = new TextView(tableRow.getContext());\r
+        final TextView col1 = new TextView(tableRow.getContext());\r
+        final TextView col2 = new TextView(tableRow.getContext());\r
         final TableRow.LayoutParams layoutParams = new TableRow.LayoutParams();\r
         layoutParams.weight = 0.5f;\r
 \r
+        // Set the columns in the table.\r
         if (r > 0) {\r
-          final TextView spacer = new TextView(tableRow.getContext());\r
-          spacer.setText(" • ");\r
-          tableRow.addView(spacer);\r
+          final TextView bullet = new TextView(tableRow.getContext());\r
+          bullet.setText(" • ");\r
+          tableRow.addView(bullet);\r
         }\r
-        tableRow.addView(column1, layoutParams);\r
+        tableRow.addView(col1, layoutParams);\r
+        final TextView margin = new TextView(tableRow.getContext());\r
+        margin.setText(" ");\r
+        tableRow.addView(margin);\r
         if (r > 0) {\r
-          final TextView spacer = new TextView(tableRow.getContext());\r
-          spacer.setText(" • ");\r
-          tableRow.addView(spacer);\r
+          final TextView bullet = new TextView(tableRow.getContext());\r
+          bullet.setText(" • ");\r
+          tableRow.addView(bullet);\r
         }\r
-        tableRow.addView(column2, layoutParams);\r
-\r
-        column1.setWidth(1);\r
-        column2.setWidth(1);\r
+        tableRow.addView(col2, layoutParams);\r
+        col1.setWidth(1);\r
+        col2.setWidth(1);\r
+        \r
+        // Set what's in the columns.\r
 \r
         // TODO: color words by gender\r
         final Pair pair = entry.pairs.get(r);\r
-        final String col1Text = Language.fixBidiText(index.swapPairEntries ? pair.lang2 : pair.lang1);\r
-        column1.setText(col1Text, TextView.BufferType.SPANNABLE);\r
-        final Spannable col1Spannable = (Spannable) column1.getText();\r
+        final String col1Text = index.swapPairEntries ? pair.lang2 : pair.lang1;\r
+        final String col2Text = index.swapPairEntries ? pair.lang1 : pair.lang2;\r
+        \r
+        col1.setText(col1Text, TextView.BufferType.SPANNABLE);\r
+        col2.setText(col2Text, TextView.BufferType.SPANNABLE);\r
         \r
+        // Bold the token instances in col1.\r
+        final Spannable col1Spannable = (Spannable) col1.getText();\r
         int startPos = 0;\r
         final String token = row.getTokenRow(true).getToken();\r
         while ((startPos = col1Text.indexOf(token, startPos)) != -1) {\r
@@ -745,34 +849,138 @@ public class DictionaryActivity extends ListActivity {
               startPos + token.length(), Spannable.SPAN_INCLUSIVE_EXCLUSIVE);\r
           startPos += token.length();\r
         }\r
-\r
-        String col2Text = index.swapPairEntries ? pair.lang1 : pair.lang2;\r
-        col2Text = Language.fixBidiText(col2Text);\r
-        column2.setText(col2Text, TextView.BufferType.NORMAL);\r
         \r
-        column1.setTextSize(TypedValue.COMPLEX_UNIT_SP, fontSizeSp);\r
-        column2.setTextSize(TypedValue.COMPLEX_UNIT_SP, fontSizeSp);\r
-\r
+        createTokenLinkSpans(col1, col1Spannable, col1Text);\r
+        createTokenLinkSpans(col2, (Spannable) col2.getText(), col2Text);\r
+        \r
+        col1.setTextSize(TypedValue.COMPLEX_UNIT_SP, fontSizeSp);\r
+        col2.setTextSize(TypedValue.COMPLEX_UNIT_SP, fontSizeSp);\r
+        // col2.setBackgroundResource(theme.otherLangBg);\r
+        \r
+        if (index.swapPairEntries) {\r
+          col2.setOnLongClickListener(textViewLongClickListenerIndex0);\r
+          col1.setOnLongClickListener(textViewLongClickListenerIndex1);\r
+        } else {\r
+          col1.setOnLongClickListener(textViewLongClickListenerIndex0);\r
+          col2.setOnLongClickListener(textViewLongClickListenerIndex1);\r
+        }\r
+        \r
         result.addView(tableRow);\r
       }\r
 \r
       return result;\r
+\r
+      \r
+//      final WebView result = (WebView) (convertView instanceof WebView ? convertView : new WebView(parent.getContext()));\r
+//        \r
+//      final PairEntry entry = row.getEntry();\r
+//      final int rowCount = entry.pairs.size();\r
+//      final StringBuilder html = new StringBuilder();\r
+//      html.append("<html><body><table width=\"100%\">");\r
+//      for (int r = 0; r < rowCount; ++r) {\r
+//        html.append("<tr>");\r
+//\r
+//        final Pair pair = entry.pairs.get(r);\r
+//        // TODO: escape both the token and the text.\r
+//        final String token = row.getTokenRow(true).getToken();\r
+//        final String col1Text = index.swapPairEntries ? pair.lang2 : pair.lang1;\r
+//        final String col2Text = index.swapPairEntries ? pair.lang1 : pair.lang2;\r
+//        \r
+//        col1Text.replaceAll(token, String.format("<b>%s</b>", token));\r
+//\r
+//        // Column1\r
+//        html.append("<td width=\"50%\">");\r
+//        if (r > 0) {\r
+//          html.append("<li>");\r
+//        }\r
+//        html.append(col1Text);\r
+//        html.append("</td>");\r
+//\r
+//        // Column2\r
+//        html.append("<td width=\"50%\">");\r
+//        if (r > 0) {\r
+//          html.append("<li>");\r
+//        }\r
+//        html.append(col2Text);\r
+//        html.append("</td>");\r
+//\r
+////        column1.setTextSize(TypedValue.COMPLEX_UNIT_SP, fontSizeSp);\r
+////        column2.setTextSize(TypedValue.COMPLEX_UNIT_SP, fontSizeSp);\r
+//\r
+//        html.append("</tr>");\r
+//      }\r
+//      html.append("</table></body></html>");\r
+//      \r
+//      Log.i(LOG, html.toString());\r
+//      \r
+//      result.getSettings().setRenderPriority(RenderPriority.HIGH);\r
+//      result.getSettings().setCacheMode(WebSettings.LOAD_NO_CACHE);\r
+//      \r
+//      result.loadData("<html><body><table><tr><td>line (connected series of public conveyances, and hence, an established arrangement for forwarding merchandise, etc.) (noun)</td><td>verbinding</td></tr></table></body></html>", "text/html", "utf-8");\r
+//\r
+//      return result;\r
     }\r
 \r
-    private View getView(TokenRow row, ViewGroup parent) {\r
+    private View getView(TokenRow row, ViewGroup parent, final View convertView) {\r
       final Context context = parent.getContext();\r
       final TextView textView = new TextView(context);\r
       textView.setText(row.getToken());\r
-      textView.setBackgroundResource(R.drawable.token_row_drawable);\r
+      textView.setBackgroundResource(row.hasMainEntry ? theme.tokenRowMainBg : theme.tokenRowOtherBg);\r
       // Doesn't work:\r
       //textView.setTextColor(android.R.color.secondary_text_light);\r
-      textView.setTextAppearance(context, R.style.Theme_Light_Token);\r
+      textView.setTextAppearance(context, theme.tokenRowFg);\r
       textView.setTextSize(TypedValue.COMPLEX_UNIT_SP, 5 * fontSizeSp / 4);\r
       return textView;\r
     }\r
     \r
   }\r
 \r
+  static final Pattern CHAR_DASH = Pattern.compile("['\\p{L}0-9]+");\r
+\r
+  private void createTokenLinkSpans(final TextView textView, final Spannable spannable, final String text) {\r
+    // Saw from the source code that LinkMovementMethod sets the selection!\r
+    // http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/2.3.1_r1/android/text/method/LinkMovementMethod.java#LinkMovementMethod\r
+    textView.setMovementMethod(LinkMovementMethod.getInstance());\r
+    final Matcher matcher = CHAR_DASH.matcher(text);\r
+    while (matcher.find()) {\r
+      spannable.setSpan(new NonLinkClickableSpan(), matcher.start(), matcher.end(), Spannable.SPAN_INCLUSIVE_EXCLUSIVE);\r
+    }\r
+  }\r
+  \r
+\r
+  String selectedSpannableText = null;\r
+  int selectedSpannableIndex = -1;\r
+\r
+  @Override\r
+  public boolean onTouchEvent(MotionEvent event) {\r
+    selectedSpannableText = null;\r
+    selectedSpannableIndex = -1;\r
+    return super.onTouchEvent(event);\r
+  }\r
+\r
+  private class TextViewLongClickListener implements OnLongClickListener {\r
+    final int index;\r
+    \r
+    private TextViewLongClickListener(final int index) {\r
+      this.index = index;\r
+    }\r
+\r
+    @Override\r
+    public boolean onLongClick(final View v) {\r
+      final TextView textView = (TextView) v;\r
+      final int start = textView.getSelectionStart();\r
+      final int end = textView.getSelectionEnd();\r
+      if (start >= 0 &&  end >= 0) {\r
+        selectedSpannableText = textView.getText().subSequence(start, end).toString();\r
+        selectedSpannableIndex = index;\r
+      }\r
+      return false;\r
+    }\r
+  }\r
+  final TextViewLongClickListener textViewLongClickListenerIndex0 = new TextViewLongClickListener(0);\r
+  final TextViewLongClickListener textViewLongClickListenerIndex1 = new TextViewLongClickListener(1);\r
+  \r
+\r
   // --------------------------------------------------------------------------\r
   // SearchText\r
   // --------------------------------------------------------------------------\r