]> gitweb.fperrin.net Git - Dictionary.git/blob - src/com/hughes/android/dictionary/DictionaryActivity.java
Try to fix font issue.
[Dictionary.git] / src / com / hughes / android / dictionary / DictionaryActivity.java
1 // Copyright 2011 Google Inc. All Rights Reserved.\r
2 //\r
3 // Licensed under the Apache License, Version 2.0 (the "License");\r
4 // you may not use this file except in compliance with the License.\r
5 // You may obtain a copy of the License at\r
6 //\r
7 //     http://www.apache.org/licenses/LICENSE-2.0\r
8 //\r
9 // Unless required by applicable law or agreed to in writing, software\r
10 // distributed under the License is distributed on an "AS IS" BASIS,\r
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
12 // See the License for the specific language governing permissions and\r
13 // limitations under the License.\r
14 \r
15 package com.hughes.android.dictionary;\r
16 \r
17 import java.io.File;\r
18 import java.io.FileWriter;\r
19 import java.io.IOException;\r
20 import java.io.PrintWriter;\r
21 import java.io.RandomAccessFile;\r
22 import java.text.SimpleDateFormat;\r
23 import java.util.Arrays;\r
24 import java.util.Collections;\r
25 import java.util.Date;\r
26 import java.util.LinkedHashSet;\r
27 import java.util.List;\r
28 import java.util.Random;\r
29 import java.util.Set;\r
30 import java.util.concurrent.Executor;\r
31 import java.util.concurrent.Executors;\r
32 import java.util.concurrent.ThreadFactory;\r
33 import java.util.concurrent.atomic.AtomicBoolean;\r
34 import java.util.regex.Matcher;\r
35 import java.util.regex.Pattern;\r
36 \r
37 import android.app.Dialog;\r
38 import android.app.ListActivity;\r
39 import android.content.Context;\r
40 import android.content.Intent;\r
41 import android.content.SharedPreferences;\r
42 import android.graphics.Typeface;\r
43 import android.net.Uri;\r
44 import android.os.Bundle;\r
45 import android.os.Handler;\r
46 import android.preference.PreferenceManager;\r
47 import android.text.ClipboardManager;\r
48 import android.text.Editable;\r
49 import android.text.Selection;\r
50 import android.text.Spannable;\r
51 import android.text.TextWatcher;\r
52 import android.text.method.LinkMovementMethod;\r
53 import android.text.style.StyleSpan;\r
54 import android.util.Log;\r
55 import android.util.TypedValue;\r
56 import android.view.ContextMenu;\r
57 import android.view.ContextMenu.ContextMenuInfo;\r
58 import android.view.KeyEvent;\r
59 import android.view.Menu;\r
60 import android.view.MenuItem;\r
61 import android.view.MenuItem.OnMenuItemClickListener;\r
62 import android.view.MotionEvent;\r
63 import android.view.View;\r
64 import android.view.View.OnClickListener;\r
65 import android.view.View.OnLongClickListener;\r
66 import android.view.ViewGroup;\r
67 import android.view.WindowManager;\r
68 import android.view.inputmethod.InputMethodManager;\r
69 import android.widget.AdapterView;\r
70 import android.widget.AdapterView.AdapterContextMenuInfo;\r
71 import android.widget.BaseAdapter;\r
72 import android.widget.Button;\r
73 import android.widget.EditText;\r
74 import android.widget.ImageView;\r
75 import android.widget.LinearLayout;\r
76 import android.widget.ListAdapter;\r
77 import android.widget.ListView;\r
78 import android.widget.TableLayout;\r
79 import android.widget.TableRow;\r
80 import android.widget.TextView;\r
81 import android.widget.Toast;\r
82 \r
83 import com.hughes.android.dictionary.DictionaryInfo.IndexInfo;\r
84 import com.hughes.android.dictionary.engine.Dictionary;\r
85 import com.hughes.android.dictionary.engine.EntrySource;\r
86 import com.hughes.android.dictionary.engine.Index;\r
87 import com.hughes.android.dictionary.engine.Index.IndexEntry;\r
88 import com.hughes.android.dictionary.engine.PairEntry;\r
89 import com.hughes.android.dictionary.engine.PairEntry.Pair;\r
90 import com.hughes.android.dictionary.engine.RowBase;\r
91 import com.hughes.android.dictionary.engine.TokenRow;\r
92 import com.hughes.android.dictionary.engine.TransliteratorManager;\r
93 import com.hughes.android.util.IntentLauncher;\r
94 import com.hughes.android.util.NonLinkClickableSpan;\r
95 \r
96 public class DictionaryActivity extends ListActivity {\r
97 \r
98   static final String LOG = "QuickDic";\r
99 \r
100   private String initialSearchText;\r
101 \r
102   DictionaryApplication application;\r
103   File dictFile = null;\r
104   RandomAccessFile dictRaf = null;\r
105   Dictionary dictionary = null;\r
106   int indexIndex = 0;\r
107   Index index = null;\r
108   List<RowBase> rowsToShow = null;  // if not null, just show these rows.\r
109   \r
110   // package for test.\r
111   final Handler uiHandler = new Handler();\r
112   private final Executor searchExecutor = Executors.newSingleThreadExecutor(new ThreadFactory() {\r
113     @Override\r
114     public Thread newThread(Runnable r) {\r
115       return new Thread(r, "searchExecutor");\r
116     }\r
117   });\r
118   private SearchOperation currentSearchOperation = null;\r
119 \r
120   C.Theme theme = C.Theme.LIGHT;\r
121   Typeface typeface;\r
122   int fontSizeSp;\r
123   EditText searchText;\r
124   Button langButton;\r
125 \r
126   // Never null.\r
127   private File wordList = null;\r
128   private boolean saveOnlyFirstSubentry = false;\r
129   private boolean clickOpensContextMenu = false;\r
130 \r
131   // Visible for testing.\r
132   ListAdapter indexAdapter = null;\r
133   \r
134   final SearchTextWatcher searchTextWatcher = new SearchTextWatcher();\r
135   \r
136   /**\r
137    * For some languages, loading the transliterators used in this search takes\r
138    * a long time, so we fire it up on a different thread, and don't invoke it\r
139    * from the main thread until it's already finished once.\r
140    */\r
141   private volatile boolean indexPrepFinished = false;\r
142 \r
143 \r
144 \r
145   public DictionaryActivity() {\r
146   }\r
147   \r
148   public static Intent getLaunchIntent(final File dictFile, final int indexIndex, final String searchToken) {\r
149     final Intent intent = new Intent();\r
150     intent.setClassName(DictionaryActivity.class.getPackage().getName(), DictionaryActivity.class.getName());\r
151     intent.putExtra(C.DICT_FILE, dictFile.getPath());\r
152     intent.putExtra(C.INDEX_INDEX, indexIndex);\r
153     intent.putExtra(C.SEARCH_TOKEN, searchToken);\r
154     return intent;\r
155   }\r
156   \r
157   @Override\r
158   protected void onSaveInstanceState(final Bundle outState) {\r
159     super.onSaveInstanceState(outState);\r
160     Log.d(LOG, "onSaveInstanceState: " + searchText.getText().toString());\r
161     outState.putInt(C.INDEX_INDEX, indexIndex);\r
162     outState.putString(C.SEARCH_TOKEN, searchText.getText().toString());\r
163   }\r
164 \r
165   @Override\r
166   protected void onRestoreInstanceState(final Bundle outState) {\r
167     super.onRestoreInstanceState(outState);\r
168     Log.d(LOG, "onRestoreInstanceState: " + outState.getString(C.SEARCH_TOKEN));\r
169     onCreate(outState);\r
170   }\r
171 \r
172   @Override\r
173   public void onCreate(Bundle savedInstanceState) {\r
174     final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);\r
175     prefs.edit().remove(C.INDEX_INDEX).commit();  // Don't auto-launch if this fails.\r
176 \r
177     setTheme(((DictionaryApplication)getApplication()).getSelectedTheme().themeId);\r
178 \r
179     Log.d(LOG, "onCreate:" + this);\r
180     super.onCreate(savedInstanceState);\r
181 \r
182     application = (DictionaryApplication) getApplication();\r
183     theme = application.getSelectedTheme();\r
184     \r
185     final Intent intent = getIntent();\r
186     dictFile = new File(intent.getStringExtra(C.DICT_FILE));\r
187     \r
188     try {\r
189       final String name = application.getDictionaryName(dictFile.getName());\r
190       this.setTitle("QuickDic: " + name);\r
191       dictRaf = new RandomAccessFile(dictFile, "r");\r
192       dictionary = new Dictionary(dictRaf); \r
193     } catch (Exception e) {\r
194       Log.e(LOG, "Unable to load dictionary.", e);\r
195       if (dictRaf != null) {\r
196         try {\r
197           dictRaf.close();\r
198         } catch (IOException e1) {\r
199           Log.e(LOG, "Unable to close dictRaf.", e1);\r
200         }\r
201         dictRaf = null;\r
202       }\r
203       Toast.makeText(this, getString(R.string.invalidDictionary, "", e.getMessage()), Toast.LENGTH_LONG).show();\r
204       startActivity(DictionaryManagerActivity.getLaunchIntent());\r
205       finish();\r
206       return;\r
207     }\r
208     indexIndex = intent.getIntExtra(C.INDEX_INDEX, 0);\r
209     if (savedInstanceState != null) {\r
210       indexIndex = savedInstanceState.getInt(C.INDEX_INDEX, indexIndex);\r
211     }\r
212     indexIndex %= dictionary.indices.size();\r
213     Log.d(LOG, "Loading index " + indexIndex);\r
214     index = dictionary.indices.get(indexIndex);\r
215     setListAdapter(new IndexAdapter(index));\r
216     \r
217     // Pre-load the collators.\r
218     new Thread(new Runnable() {\r
219       public void run() {\r
220         final long startMillis = System.currentTimeMillis();\r
221         try {\r
222           TransliteratorManager.init(new TransliteratorManager.Callback() {\r
223             @Override\r
224             public void onTransliteratorReady() {\r
225               uiHandler.post(new Runnable() {\r
226                 @Override\r
227                 public void run() {\r
228                   onSearchTextChange(searchText.getText().toString());\r
229                 }\r
230               });\r
231             }\r
232           });\r
233           \r
234           for (final Index index : dictionary.indices) {\r
235             final String searchToken = index.sortedIndexEntries.get(0).token;\r
236             final IndexEntry entry = index.findExact(searchToken);\r
237             if (!searchToken.equals(entry.token)) {\r
238               Log.e(LOG, "Couldn't find token: " + searchToken + ", " + entry.token);\r
239             }\r
240           }\r
241           indexPrepFinished = true;\r
242         } catch (Exception e) {\r
243           Log.w(LOG, "Exception while prepping.  This can happen if dictionary is closed while search is happening.");\r
244         }\r
245           Log.d(LOG, "Prepping indices took:"\r
246               + (System.currentTimeMillis() - startMillis));\r
247       }\r
248     }).start();\r
249     \r
250     \r
251     final int fontWorkAround = prefs.getInt(C.FONT_WORKAROUND, 1);\r
252     if (fontWorkAround == 0) {\r
253       Toast.makeText(this, getString(R.string.fontWorkaround), Toast.LENGTH_LONG).show();\r
254       prefs.edit().putString(getString(R.string.fontKey), "SYSTEM").commit();\r
255     }\r
256     prefs.edit().putInt(C.FONT_WORKAROUND, 0).commit();\r
257     String fontName = prefs.getString(getString(R.string.fontKey), "FreeSerif.ttf.jpg");\r
258     if (fontWorkAround == 0 || "SYSTEM".equals(fontName)) {\r
259       typeface = Typeface.DEFAULT;\r
260     } else {\r
261       try {\r
262         typeface = Typeface.createFromAsset(getAssets(), fontName);\r
263       } catch (Exception e) {\r
264         Log.w(LOG, "Exception trying to use typeface, using default.", e);\r
265         Toast.makeText(this, getString(R.string.fontFailure, e.getLocalizedMessage()), Toast.LENGTH_LONG).show();\r
266       }\r
267     }\r
268 //    if (!"SYSTEM".equals(fontName)) {\r
269 //      throw new RuntimeException("Test force using system font: " + fontName);\r
270 //    }\r
271     if (typeface == null) {\r
272       Log.w(LOG, "Unable to create typeface, using default.");\r
273       typeface = Typeface.DEFAULT;\r
274     }\r
275     final String fontSize = prefs.getString(getString(R.string.fontSizeKey), "14");\r
276     try {\r
277       fontSizeSp = Integer.parseInt(fontSize.trim());\r
278     } catch (NumberFormatException e) {\r
279       fontSizeSp = 14;\r
280     } \r
281     // Things worked with loading the font.\r
282     prefs.edit().putInt(C.FONT_WORKAROUND, 1).commit();\r
283 \r
284 \r
285     setContentView(R.layout.dictionary_activity);\r
286     searchText = (EditText) findViewById(R.id.SearchText);\r
287     searchText.setTypeface(typeface);\r
288     searchText.setTextSize(TypedValue.COMPLEX_UNIT_SP, fontSizeSp);\r
289     \r
290     langButton = (Button) findViewById(R.id.LangButton);\r
291     \r
292     searchText.requestFocus();\r
293     searchText.addTextChangedListener(searchTextWatcher);\r
294     \r
295     // Set the search text from the intent, then the saved state.\r
296     String text = getIntent().getStringExtra(C.SEARCH_TOKEN);\r
297     if (savedInstanceState != null) {\r
298       text = savedInstanceState.getString(C.SEARCH_TOKEN);\r
299     }\r
300     if (text == null) {\r
301       text = "";\r
302     }\r
303     setSearchText(text, true);\r
304     Log.d(LOG, "Trying to restore searchText=" + text);\r
305     \r
306     final Button clearSearchTextButton = (Button) findViewById(R.id.ClearSearchTextButton);\r
307     clearSearchTextButton.setOnClickListener(new OnClickListener() {\r
308       public void onClick(View v) {\r
309         onClearSearchTextButton(clearSearchTextButton);\r
310       }\r
311     });\r
312     clearSearchTextButton.setVisibility(PreferenceManager.getDefaultSharedPreferences(this).getBoolean(\r
313         getString(R.string.showClearSearchTextButtonKey), true) ? View.VISIBLE\r
314         : View.GONE);\r
315     \r
316     final Button langButton = (Button) findViewById(R.id.LangButton);\r
317     langButton.setOnClickListener(new OnClickListener() {\r
318       public void onClick(View v) {\r
319         onLanguageButton();\r
320       }\r
321     });\r
322     langButton.setOnLongClickListener(new OnLongClickListener() {\r
323       @Override\r
324       public boolean onLongClick(View v) {\r
325         onLanguageButtonLongClick(v.getContext());\r
326         return true;\r
327       }\r
328     });\r
329     updateLangButton();\r
330     \r
331     final Button upButton = (Button) findViewById(R.id.UpButton);\r
332     upButton.setOnClickListener(new OnClickListener() {\r
333       public void onClick(View v) {\r
334         onUpDownButton(true);\r
335       }\r
336     });\r
337     final Button downButton = (Button) findViewById(R.id.DownButton);\r
338     downButton.setOnClickListener(new OnClickListener() {\r
339       public void onClick(View v) {\r
340         onUpDownButton(false);\r
341       }\r
342     });\r
343 \r
344    getListView().setOnItemSelectedListener(new ListView.OnItemSelectedListener() {\r
345       @Override\r
346       public void onItemSelected(AdapterView<?> adapterView, View arg1, final int position,\r
347           long id) {\r
348         if (!searchText.isFocused()) {\r
349           if (!isFiltered()) {\r
350             final RowBase row = (RowBase) getListAdapter().getItem(position);\r
351             Log.d(LOG, "onItemSelected: " + row.index());\r
352             final TokenRow tokenRow = row.getTokenRow(true);\r
353             searchText.setText(tokenRow.getToken());\r
354           }\r
355         }\r
356       }\r
357 \r
358       @Override\r
359       public void onNothingSelected(AdapterView<?> arg0) {\r
360       }\r
361     });\r
362 \r
363     // ContextMenu.\r
364     registerForContextMenu(getListView());\r
365 \r
366     // Prefs.\r
367     wordList = new File(prefs.getString(getString(R.string.wordListFileKey),\r
368         getString(R.string.wordListFileDefault)));\r
369     saveOnlyFirstSubentry = prefs.getBoolean(getString(R.string.saveOnlyFirstSubentryKey), false);\r
370     clickOpensContextMenu = prefs.getBoolean(getString(R.string.clickOpensContextMenuKey), false);\r
371     //if (prefs.getBoolean(getString(R.string.vibrateOnFailedSearchKey), true)) {\r
372       // vibrator = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE);\r
373     //}\r
374     Log.d(LOG, "wordList=" + wordList + ", saveOnlyFirstSubentry=" + saveOnlyFirstSubentry);\r
375     \r
376     setDictionaryPrefs(this, dictFile, indexIndex, searchText.getText().toString());\r
377   }\r
378   \r
379   @Override\r
380   protected void onResume() {\r
381     super.onResume();\r
382     if (PreferenceActivity.prefsMightHaveChanged) {\r
383       PreferenceActivity.prefsMightHaveChanged = false;\r
384       finish();\r
385       startActivity(getIntent());\r
386     }\r
387     if (initialSearchText != null) {\r
388       setSearchText(initialSearchText, true);\r
389     }\r
390   }\r
391   \r
392   @Override\r
393   protected void onPause() {\r
394     super.onPause();\r
395   }\r
396   \r
397   private static void setDictionaryPrefs(final Context context,\r
398       final File dictFile, final int indexIndex, final String searchToken) {\r
399     final SharedPreferences.Editor prefs = PreferenceManager.getDefaultSharedPreferences(context).edit();\r
400     prefs.putString(C.DICT_FILE, dictFile.getPath());\r
401     prefs.putInt(C.INDEX_INDEX, indexIndex);\r
402     prefs.putString(C.SEARCH_TOKEN, searchToken);\r
403     prefs.commit();\r
404   }\r
405 \r
406   @Override\r
407   protected void onDestroy() {\r
408     super.onDestroy();\r
409     if (dictRaf == null) {\r
410       return;\r
411     }\r
412 \r
413     final SearchOperation searchOperation = currentSearchOperation;\r
414     currentSearchOperation = null;\r
415 \r
416     // Before we close the RAF, we have to wind the current search down.\r
417     if (searchOperation != null) {\r
418       Log.d(LOG, "Interrupting search to shut down.");\r
419       currentSearchOperation = null;\r
420       searchOperation.interrupted.set(true);\r
421     }\r
422     \r
423     try {\r
424       Log.d(LOG, "Closing RAF.");\r
425       dictRaf.close();\r
426     } catch (IOException e) {\r
427       Log.e(LOG, "Failed to close dictionary", e);\r
428     }\r
429     dictRaf = null;\r
430   }\r
431 \r
432   // --------------------------------------------------------------------------\r
433   // Buttons\r
434   // --------------------------------------------------------------------------\r
435 \r
436   private void onClearSearchTextButton(final Button clearSearchTextButton) {\r
437     setSearchText("", true);\r
438     Log.d(LOG, "Trying to show soft keyboard.");\r
439     final InputMethodManager manager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);\r
440     manager.showSoftInput(searchText, InputMethodManager.SHOW_IMPLICIT);\r
441   }\r
442   \r
443   void updateLangButton() {\r
444 //    final LanguageResources languageResources = Language.isoCodeToResources.get(index.shortName);\r
445 //    if (languageResources != null && languageResources.flagId != 0) {\r
446 //      langButton.setCompoundDrawablesWithIntrinsicBounds(0, 0, languageResources.flagId, 0);\r
447 //    } else {\r
448 //      langButton.setCompoundDrawablesWithIntrinsicBounds(0, 0, 0, 0);\r
449       langButton.setText(index.shortName);\r
450 //    }\r
451   }\r
452 \r
453   void onLanguageButton() {\r
454     if (currentSearchOperation != null) {\r
455       currentSearchOperation.interrupted.set(true);\r
456       currentSearchOperation = null;\r
457     }\r
458     changeIndexGetFocusAndResearch((indexIndex + 1)% dictionary.indices.size());\r
459   }\r
460   \r
461   void onLanguageButtonLongClick(final Context context) {\r
462     final Dialog dialog = new Dialog(context);\r
463     dialog.setContentView(R.layout.select_dictionary_dialog);\r
464     dialog.setTitle(R.string.selectDictionary);\r
465 \r
466     final List<DictionaryInfo> installedDicts = ((DictionaryApplication)getApplication()).getUsableDicts();\r
467     \r
468     ListView listView = (ListView) dialog.findViewById(android.R.id.list);\r
469 \r
470 //    final LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);\r
471 //    layoutParams.width = 0;\r
472 //    layoutParams.weight = 1.0f;\r
473 \r
474     final Button button = new Button(listView.getContext());\r
475     final String name = getString(R.string.dictionaryManager);\r
476     button.setText(name);\r
477     final IntentLauncher intentLauncher = new IntentLauncher(listView.getContext(), DictionaryManagerActivity.getLaunchIntent()) {\r
478       @Override\r
479       protected void onGo() {\r
480         dialog.dismiss();\r
481         DictionaryActivity.this.finish();\r
482       };\r
483     };\r
484     button.setOnClickListener(intentLauncher);\r
485 //    button.setLayoutParams(layoutParams);\r
486     listView.addHeaderView(button);\r
487 //    listView.setHeaderDividersEnabled(true);\r
488     \r
489     listView.setAdapter(new BaseAdapter() {\r
490       @Override\r
491       public View getView(int position, View convertView, ViewGroup parent) {\r
492         final LinearLayout result = new LinearLayout(parent.getContext());\r
493 \r
494         final DictionaryInfo dictionaryInfo = getItem(position);\r
495           final Button button = new Button(parent.getContext());\r
496           final String name = application.getDictionaryName(dictionaryInfo.uncompressedFilename);\r
497           button.setText(name);\r
498           final IntentLauncher intentLauncher = new IntentLauncher(parent.getContext(), getLaunchIntent(application.getPath(dictionaryInfo.uncompressedFilename), 0, searchText.getText().toString())) {\r
499             @Override\r
500             protected void onGo() {\r
501               dialog.dismiss();\r
502               DictionaryActivity.this.finish();\r
503             };\r
504           };\r
505           button.setOnClickListener(intentLauncher);\r
506           final LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);\r
507           layoutParams.width = 0;\r
508           layoutParams.weight = 1.0f;\r
509           button.setLayoutParams(layoutParams);\r
510           result.addView(button);\r
511         return result;\r
512       }\r
513       \r
514       @Override\r
515       public long getItemId(int position) {\r
516         return position;\r
517       }\r
518       \r
519       @Override\r
520       public DictionaryInfo getItem(int position) {\r
521         return installedDicts.get(position);\r
522       }\r
523       \r
524       @Override\r
525       public int getCount() {\r
526         return installedDicts.size();\r
527       }\r
528     });\r
529     \r
530     dialog.show();\r
531   }\r
532 \r
533 \r
534   private void changeIndexGetFocusAndResearch(final int newIndex) {\r
535     indexIndex = newIndex;\r
536     index = dictionary.indices.get(indexIndex);\r
537     indexAdapter = new IndexAdapter(index);\r
538     Log.d(LOG, "changingIndex, newLang=" + index.longName);\r
539     setListAdapter(indexAdapter);\r
540     updateLangButton();\r
541     searchText.requestFocus();  // Otherwise, nothing may happen.\r
542     onSearchTextChange(searchText.getText().toString());\r
543     setDictionaryPrefs(this, dictFile, indexIndex, searchText.getText().toString());\r
544   }\r
545   \r
546   void onUpDownButton(final boolean up) {\r
547     if (isFiltered()) {\r
548       return;\r
549     }\r
550     final int firstVisibleRow = getListView().getFirstVisiblePosition();\r
551     final RowBase row = index.rows.get(firstVisibleRow);\r
552     final TokenRow tokenRow = row.getTokenRow(true);\r
553     final int destIndexEntry;\r
554     if (up) {\r
555       if (row != tokenRow) {\r
556         destIndexEntry = tokenRow.referenceIndex;\r
557       } else {\r
558         destIndexEntry = Math.max(tokenRow.referenceIndex - 1, 0);\r
559       }\r
560     } else {\r
561       // Down\r
562       destIndexEntry = Math.min(tokenRow.referenceIndex + 1, index.sortedIndexEntries.size());\r
563     }\r
564     final Index.IndexEntry dest = index.sortedIndexEntries.get(destIndexEntry);\r
565     Log.d(LOG, "onUpDownButton, destIndexEntry=" + dest.token);\r
566     searchText.removeTextChangedListener(searchTextWatcher);\r
567     searchText.setText(dest.token);\r
568     if (searchText.getLayout() != null) {\r
569       // Surprising, but this can otherwise crash sometimes...\r
570       Selection.moveToRightEdge(searchText.getText(), searchText.getLayout());\r
571     }\r
572     jumpToRow(index.sortedIndexEntries.get(destIndexEntry).startRow);\r
573     searchText.addTextChangedListener(searchTextWatcher);\r
574   }\r
575 \r
576   // --------------------------------------------------------------------------\r
577   // Options Menu\r
578   // --------------------------------------------------------------------------\r
579   \r
580   final Random random = new Random();\r
581   \r
582   @Override\r
583   public boolean onCreateOptionsMenu(final Menu menu) {\r
584     application.onCreateGlobalOptionsMenu(this, menu);\r
585 \r
586     {\r
587       final MenuItem randomWord = menu.add(getString(R.string.randomWord));\r
588       randomWord.setOnMenuItemClickListener(new OnMenuItemClickListener() {\r
589         public boolean onMenuItemClick(final MenuItem menuItem) {\r
590           final String word = index.sortedIndexEntries.get(random.nextInt(index.sortedIndexEntries.size())).token;\r
591           setSearchText(word, true);\r
592           return false;\r
593         }\r
594       });\r
595     }\r
596     \r
597     {\r
598       final MenuItem dictionaryList = menu.add(getString(R.string.dictionaryManager));\r
599       dictionaryList.setOnMenuItemClickListener(new OnMenuItemClickListener() {\r
600         public boolean onMenuItemClick(final MenuItem menuItem) {\r
601           startActivity(DictionaryManagerActivity.getLaunchIntent());\r
602           finish();\r
603           return false;\r
604         }\r
605       });\r
606     }\r
607 \r
608     {\r
609       final MenuItem aboutDictionary = menu.add(getString(R.string.aboutDictionary));\r
610       aboutDictionary.setOnMenuItemClickListener(new OnMenuItemClickListener() {\r
611         public boolean onMenuItemClick(final MenuItem menuItem) {\r
612           final Context context = getListView().getContext();\r
613           final Dialog dialog = new Dialog(context);\r
614           dialog.setContentView(R.layout.about_dictionary_dialog);\r
615           final TextView textView = (TextView) dialog.findViewById(R.id.text);\r
616 \r
617           final String name = application.getDictionaryName(dictFile.getName());\r
618           dialog.setTitle(name);\r
619           \r
620           final StringBuilder builder = new StringBuilder();\r
621           final DictionaryInfo dictionaryInfo = dictionary.getDictionaryInfo();\r
622           dictionaryInfo.uncompressedBytes = dictFile.length();\r
623           if (dictionaryInfo != null) {\r
624             builder.append(dictionaryInfo.dictInfo).append("\n\n");\r
625             builder.append(getString(R.string.dictionaryPath, dictFile.getPath())).append("\n");\r
626             builder.append(getString(R.string.dictionarySize, dictionaryInfo.uncompressedBytes)).append("\n");\r
627             builder.append(getString(R.string.dictionaryCreationTime, dictionaryInfo.creationMillis)).append("\n");\r
628             for (final IndexInfo indexInfo : dictionaryInfo.indexInfos) {\r
629               builder.append("\n");\r
630               builder.append(getString(R.string.indexName, indexInfo.shortName)).append("\n");\r
631               builder.append(getString(R.string.mainTokenCount, indexInfo.mainTokenCount)).append("\n");\r
632             }\r
633             builder.append("\n");\r
634             builder.append(getString(R.string.sources)).append("\n");\r
635             for (final EntrySource source : dictionary.sources) {\r
636               builder.append(getString(R.string.sourceInfo, source.getName(), source.getNumEntries())).append("\n");\r
637             }\r
638           }\r
639 //          } else {\r
640 //            builder.append(getString(R.string.invalidDictionary));\r
641 //          }\r
642           textView.setText(builder.toString());\r
643           \r
644           dialog.show();\r
645           final WindowManager.LayoutParams layoutParams = new WindowManager.LayoutParams();\r
646           layoutParams.width = WindowManager.LayoutParams.FILL_PARENT;\r
647           layoutParams.height = WindowManager.LayoutParams.FILL_PARENT;\r
648           dialog.getWindow().setAttributes(layoutParams);\r
649           return false;\r
650         }\r
651       });\r
652     }\r
653 \r
654     return true;\r
655   }\r
656 \r
657 \r
658   // --------------------------------------------------------------------------\r
659   // Context Menu + clicks\r
660   // --------------------------------------------------------------------------\r
661 \r
662   @Override\r
663   public void onCreateContextMenu(ContextMenu menu, View v,\r
664       ContextMenuInfo menuInfo) {\r
665     AdapterContextMenuInfo adapterContextMenuInfo = (AdapterContextMenuInfo) menuInfo;\r
666     final RowBase row = (RowBase) getListAdapter().getItem(adapterContextMenuInfo.position);\r
667 \r
668     final MenuItem addToWordlist = menu.add(getString(R.string.addToWordList, wordList.getName()));\r
669     addToWordlist.setOnMenuItemClickListener(new OnMenuItemClickListener() {\r
670       public boolean onMenuItemClick(MenuItem item) {\r
671         onAppendToWordList(row);\r
672         return false;\r
673       }\r
674     });\r
675 \r
676     final MenuItem copy = menu.add(android.R.string.copy);\r
677     copy.setOnMenuItemClickListener(new OnMenuItemClickListener() {\r
678       public boolean onMenuItemClick(MenuItem item) {\r
679         onCopy(row);\r
680         return false;\r
681       }\r
682     });\r
683     \r
684     if (selectedSpannableText != null) {\r
685       final String selectedText = selectedSpannableText;\r
686       final MenuItem searchForSelection = menu.add(getString(R.string.searchForSelection, selectedSpannableText));\r
687       searchForSelection.setOnMenuItemClickListener(new OnMenuItemClickListener() {\r
688         public boolean onMenuItemClick(MenuItem item) {\r
689           int indexToUse = -1;\r
690           for (int i = 0; i < dictionary.indices.size(); ++i) {\r
691             final Index index = dictionary.indices.get(i);\r
692             if (indexPrepFinished) {\r
693               System.out.println("Doing index lookup: on " + selectedText);\r
694               final IndexEntry indexEntry = index.findExact(selectedText);\r
695               if (indexEntry != null) {\r
696                 final TokenRow tokenRow = index.rows.get(indexEntry.startRow).getTokenRow(false);\r
697                 if (tokenRow != null && tokenRow.hasMainEntry) {\r
698                   indexToUse = i;\r
699                   break;\r
700                 }\r
701               }\r
702             } else {\r
703               Log.w(LOG, "Skipping findExact on index " + index.shortName);\r
704             }\r
705           }\r
706           if (indexToUse == -1) {\r
707             indexToUse = selectedSpannableIndex;\r
708           }\r
709           final boolean changeIndex = indexIndex != indexToUse;\r
710           setSearchText(selectedText, !changeIndex);  // If we're not changing index, we have to triggerSearch.\r
711           if (changeIndex) {\r
712             changeIndexGetFocusAndResearch(indexToUse);\r
713           }\r
714           // Give focus back to list view because typing is done.\r
715           getListView().requestFocus();\r
716           return false;\r
717         }\r
718       });\r
719     }\r
720     \r
721 \r
722   }\r
723   \r
724   @Override\r
725   protected void onListItemClick(ListView l, View v, int row, long id) {\r
726     defocusSearchText();\r
727     if (clickOpensContextMenu && dictRaf != null) {\r
728       openContextMenu(v);\r
729     }\r
730   }\r
731   \r
732   void onAppendToWordList(final RowBase row) {\r
733     defocusSearchText();\r
734     \r
735     final StringBuilder rawText = new StringBuilder();\r
736     rawText.append(\r
737         new SimpleDateFormat("yyyy.MM.dd HH:mm:ss").format(new Date()))\r
738         .append("\t");\r
739     rawText.append(index.longName).append("\t");\r
740     rawText.append(row.getTokenRow(true).getToken()).append("\t");\r
741     rawText.append(row.getRawText(saveOnlyFirstSubentry));\r
742     Log.d(LOG, "Writing : " + rawText);\r
743 \r
744     try {\r
745       wordList.getParentFile().mkdirs();\r
746       final PrintWriter out = new PrintWriter(\r
747           new FileWriter(wordList, true));\r
748       out.println(rawText.toString());\r
749       out.close();\r
750     } catch (IOException e) {\r
751       Log.e(LOG, "Unable to append to " + wordList.getAbsolutePath(), e);\r
752       Toast.makeText(this, getString(R.string.failedAddingToWordList, wordList.getAbsolutePath()), Toast.LENGTH_LONG);\r
753     }\r
754     return;\r
755   }\r
756   \r
757   /**\r
758    * Called when user clicks outside of search text, so that they can start\r
759    * typing again immediately.\r
760    */\r
761   void defocusSearchText() {\r
762     //Log.d(LOG, "defocusSearchText");\r
763     // Request focus so that if we start typing again, it clears the text input.\r
764     getListView().requestFocus();\r
765     \r
766     // Visual indication that a new keystroke will clear the search text.\r
767     searchText.selectAll();\r
768   }\r
769 \r
770   void onCopy(final RowBase row) {\r
771     defocusSearchText();\r
772 \r
773     Log.d(LOG, "Copy, row=" + row);\r
774     final StringBuilder result = new StringBuilder();\r
775     result.append(row.getRawText(false));\r
776     final ClipboardManager clipboardManager = (ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE);\r
777     clipboardManager.setText(result.toString());\r
778     Log.d(LOG, "Copied: " + result);\r
779   }\r
780 \r
781   @Override\r
782   public boolean onKeyDown(final int keyCode, final KeyEvent event) {\r
783     if (event.getUnicodeChar() != 0) {\r
784       if (!searchText.hasFocus()) {\r
785         setSearchText("" + (char) event.getUnicodeChar(), true);\r
786       }\r
787       return true;\r
788     }\r
789     if (keyCode == KeyEvent.KEYCODE_BACK) {\r
790       //Log.d(LOG, "Clearing dictionary prefs.");\r
791       // Pretend that we just autolaunched so that we won't do it again.\r
792       //DictionaryManagerActivity.lastAutoLaunchMillis = System.currentTimeMillis();\r
793     }\r
794     if (keyCode == KeyEvent.KEYCODE_ENTER) {\r
795       Log.d(LOG, "Trying to hide soft keyboard.");\r
796       final InputMethodManager inputManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);\r
797       inputManager.hideSoftInputFromWindow(this.getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);\r
798       return true;\r
799     }\r
800     return super.onKeyDown(keyCode, event);\r
801   }\r
802 \r
803   private void setSearchText(final String text, final boolean triggerSearch) {\r
804     if (!triggerSearch) {\r
805       getListView().requestFocus();\r
806     }\r
807     searchText.setText(text);\r
808     searchText.requestFocus();\r
809     moveCursorToRight();\r
810     if (triggerSearch) {\r
811       onSearchTextChange(text);\r
812     }\r
813   }\r
814   \r
815   private long cursorDelayMillis = 100;\r
816   private void moveCursorToRight() {\r
817     if (searchText.getLayout() != null) {\r
818       cursorDelayMillis = 100;\r
819       // Surprising, but this can crash when you rotate...\r
820       Selection.moveToRightEdge(searchText.getText(), searchText.getLayout());\r
821     } else {\r
822       uiHandler.postDelayed(new Runnable() {\r
823         @Override\r
824         public void run() {\r
825           moveCursorToRight();\r
826         }\r
827       }, cursorDelayMillis);\r
828       cursorDelayMillis = Math.min(10 * 1000, 2 * cursorDelayMillis);\r
829     }\r
830   }\r
831 \r
832 \r
833   // --------------------------------------------------------------------------\r
834   // SearchOperation\r
835   // --------------------------------------------------------------------------\r
836 \r
837   private void searchFinished(final SearchOperation searchOperation) {\r
838     if (searchOperation.interrupted.get()) {\r
839       Log.d(LOG, "Search operation was interrupted: " + searchOperation);\r
840       return;\r
841     }\r
842     if (searchOperation != this.currentSearchOperation) {\r
843       Log.d(LOG, "Stale searchOperation finished: " + searchOperation);\r
844       return;\r
845     }\r
846     \r
847     final Index.IndexEntry searchResult = searchOperation.searchResult;\r
848     Log.d(LOG, "searchFinished: " + searchOperation + ", searchResult=" + searchResult);\r
849 \r
850     currentSearchOperation = null;\r
851     uiHandler.postDelayed(new Runnable() {\r
852       @Override\r
853       public void run() {\r
854         if (currentSearchOperation == null) {\r
855           if (searchResult != null) {\r
856             if (isFiltered()) {\r
857               clearFiltered();\r
858             }\r
859             jumpToRow(searchResult.startRow);\r
860           } else if (searchOperation.multiWordSearchResult != null) {\r
861             // Multi-row search....\r
862             setFiltered(searchOperation);\r
863           } else {\r
864             throw new IllegalStateException("This should never happen.");\r
865           }\r
866         } else {\r
867           Log.d(LOG, "More coming, waiting for currentSearchOperation.");\r
868         }\r
869       }\r
870     }, 20);\r
871     \r
872   }\r
873   \r
874   private final void jumpToRow(final int row) {\r
875     setSelection(row);\r
876     getListView().setSelected(true);\r
877   }\r
878 \r
879   static final Pattern WHITESPACE = Pattern.compile("\\s+");\r
880   final class SearchOperation implements Runnable {\r
881     \r
882     final AtomicBoolean interrupted = new AtomicBoolean(false);\r
883     final String searchText;\r
884     List<String> searchTokens;  // filled in for multiWord.\r
885     final Index index;\r
886     \r
887     long searchStartMillis;\r
888 \r
889     Index.IndexEntry searchResult;\r
890     List<RowBase> multiWordSearchResult;\r
891     \r
892     boolean done = false;\r
893     \r
894     SearchOperation(final String searchText, final Index index) {\r
895       this.searchText = searchText.trim();\r
896       this.index = index;\r
897     }\r
898     \r
899     public String toString() {\r
900       return String.format("SearchOperation(%s,%s)", searchText, interrupted.toString());\r
901     }\r
902 \r
903     @Override\r
904     public void run() {\r
905       try {\r
906         searchStartMillis = System.currentTimeMillis();\r
907         final String[] searchTokenArray = WHITESPACE.split(searchText);\r
908         if (searchTokenArray.length == 1) {\r
909           searchResult = index.findInsertionPoint(searchText, interrupted);\r
910         } else {\r
911           searchTokens = Arrays.asList(searchTokenArray);\r
912           multiWordSearchResult = index.multiWordSearch(searchTokens, interrupted);\r
913         }\r
914         Log.d(LOG, "searchText=" + searchText + ", searchDuration="\r
915             + (System.currentTimeMillis() - searchStartMillis) + ", interrupted="\r
916             + interrupted.get());\r
917         if (!interrupted.get()) {\r
918           uiHandler.post(new Runnable() {\r
919             @Override\r
920             public void run() {            \r
921               searchFinished(SearchOperation.this);\r
922             }\r
923           });\r
924         }\r
925       } catch (Exception e) {\r
926         Log.e(LOG, "Failure during search (can happen during Activity close.");\r
927       } finally {\r
928         synchronized (this) {\r
929           done = true;\r
930           this.notifyAll();\r
931         }\r
932       }\r
933     }\r
934   }\r
935 \r
936   \r
937   // --------------------------------------------------------------------------\r
938   // IndexAdapter\r
939   // --------------------------------------------------------------------------\r
940 \r
941   final class IndexAdapter extends BaseAdapter {\r
942     \r
943     final Index index;\r
944     final List<RowBase> rows;\r
945     final Set<String> toHighlight;\r
946 \r
947     IndexAdapter(final Index index) {\r
948       this.index = index;\r
949       rows = index.rows;\r
950       this.toHighlight = null;\r
951     }\r
952 \r
953     IndexAdapter(final Index index, final List<RowBase> rows, final List<String> toHighlight) {\r
954       this.index = index;\r
955       this.rows = rows;\r
956       this.toHighlight = new LinkedHashSet<String>(toHighlight);\r
957     }\r
958 \r
959     @Override\r
960     public int getCount() {\r
961       return rows.size();\r
962     }\r
963 \r
964     @Override\r
965     public RowBase getItem(int position) {\r
966       return rows.get(position);\r
967     }\r
968 \r
969     @Override\r
970     public long getItemId(int position) {\r
971       return getItem(position).index();\r
972     }\r
973 \r
974     @Override\r
975     public TableLayout getView(int position, View convertView, ViewGroup parent) {\r
976       final TableLayout result;\r
977       if (convertView instanceof TableLayout) {\r
978         result = (TableLayout) convertView;\r
979         result.removeAllViews();\r
980       } else {\r
981         result = new TableLayout(parent.getContext());\r
982       }\r
983       final RowBase row = getItem(position);\r
984       if (row instanceof PairEntry.Row) {\r
985         return getView(position, (PairEntry.Row) row, parent, result);\r
986       } else if (row instanceof TokenRow) {\r
987         return getView((TokenRow) row, parent, result);\r
988       } else {\r
989         throw new IllegalArgumentException("Unsupported Row type: " + row.getClass());\r
990       }\r
991     }\r
992 \r
993     private TableLayout getView(final int position, PairEntry.Row row, ViewGroup parent, final TableLayout result) {\r
994       final PairEntry entry = row.getEntry();\r
995       final int rowCount = entry.pairs.size();\r
996       \r
997       final TableRow.LayoutParams layoutParams = new TableRow.LayoutParams();\r
998       layoutParams.weight = 0.5f;\r
999       \r
1000       for (int r = 0; r < rowCount; ++r) {\r
1001         final TableRow tableRow = new TableRow(result.getContext());\r
1002 \r
1003         final TextView col1 = new TextView(tableRow.getContext());\r
1004         final TextView col2 = new TextView(tableRow.getContext());\r
1005 \r
1006         // Set the columns in the table.\r
1007         if (r > 0) {\r
1008           final TextView bullet = new TextView(tableRow.getContext());\r
1009           bullet.setText(" â€¢ ");\r
1010           tableRow.addView(bullet);\r
1011         }\r
1012         tableRow.addView(col1, layoutParams);\r
1013         final TextView margin = new TextView(tableRow.getContext());\r
1014         margin.setText(" ");\r
1015         tableRow.addView(margin);\r
1016         if (r > 0) {\r
1017           final TextView bullet = new TextView(tableRow.getContext());\r
1018           bullet.setText(" â€¢ ");\r
1019           tableRow.addView(bullet);\r
1020         }\r
1021         tableRow.addView(col2, layoutParams);\r
1022         col1.setWidth(1);\r
1023         col2.setWidth(1);\r
1024         \r
1025         // Set what's in the columns.\r
1026 \r
1027         final Pair pair = entry.pairs.get(r);\r
1028         final String col1Text = index.swapPairEntries ? pair.lang2 : pair.lang1;\r
1029         final String col2Text = index.swapPairEntries ? pair.lang1 : pair.lang2;\r
1030         \r
1031         col1.setText(col1Text, TextView.BufferType.SPANNABLE);\r
1032         col2.setText(col2Text, TextView.BufferType.SPANNABLE);\r
1033         \r
1034         // Bold the token instances in col1.\r
1035         final Set<String> toBold = toHighlight != null ? this.toHighlight : Collections.singleton(row.getTokenRow(true).getToken());\r
1036         final Spannable col1Spannable = (Spannable) col1.getText();\r
1037         for (final String token : toBold) {\r
1038           int startPos = 0;\r
1039           while ((startPos = col1Text.indexOf(token, startPos)) != -1) {\r
1040             col1Spannable.setSpan(new StyleSpan(Typeface.BOLD), startPos,\r
1041                 startPos + token.length(), Spannable.SPAN_INCLUSIVE_EXCLUSIVE);\r
1042             startPos += token.length();\r
1043           }\r
1044         }\r
1045         \r
1046         createTokenLinkSpans(col1, col1Spannable, col1Text);\r
1047         createTokenLinkSpans(col2, (Spannable) col2.getText(), col2Text);\r
1048         \r
1049         col1.setTypeface(typeface);\r
1050         col2.setTypeface(typeface);\r
1051         col1.setTextSize(TypedValue.COMPLEX_UNIT_SP, fontSizeSp);\r
1052         col2.setTextSize(TypedValue.COMPLEX_UNIT_SP, fontSizeSp);\r
1053         // col2.setBackgroundResource(theme.otherLangBg);\r
1054         \r
1055         if (index.swapPairEntries) {\r
1056           col2.setOnLongClickListener(textViewLongClickListenerIndex0);\r
1057           col1.setOnLongClickListener(textViewLongClickListenerIndex1);\r
1058         } else {\r
1059           col1.setOnLongClickListener(textViewLongClickListenerIndex0);\r
1060           col2.setOnLongClickListener(textViewLongClickListenerIndex1);\r
1061         }\r
1062         \r
1063         result.addView(tableRow);\r
1064       }\r
1065 \r
1066       // Because we have a Button inside a ListView row:\r
1067       // http://groups.google.com/group/android-developers/browse_thread/thread/3d96af1530a7d62a?pli=1\r
1068       result.setDescendantFocusability(ViewGroup.FOCUS_BLOCK_DESCENDANTS);\r
1069       result.setClickable(true);\r
1070       result.setFocusable(true);\r
1071       result.setLongClickable(true);\r
1072       result.setBackgroundResource(android.R.drawable.menuitem_background);\r
1073       result.setOnClickListener(new TextView.OnClickListener() {\r
1074         @Override\r
1075         public void onClick(View v) {\r
1076           DictionaryActivity.this.onListItemClick(getListView(), v, position, position);\r
1077         }\r
1078       });\r
1079 \r
1080       return result;\r
1081     }\r
1082 \r
1083     private TableLayout getView(TokenRow row, ViewGroup parent, final TableLayout result) {\r
1084       final Context context = parent.getContext();\r
1085       final TextView textView = new TextView(context);\r
1086       textView.setText(row.getToken());\r
1087       // Doesn't work:\r
1088       //textView.setTextColor(android.R.color.secondary_text_light);\r
1089       textView.setTextAppearance(context, theme.tokenRowFg);\r
1090       textView.setTypeface(typeface);\r
1091       textView.setTextSize(TypedValue.COMPLEX_UNIT_SP, 5 * fontSizeSp / 4);\r
1092       \r
1093       final TableRow tableRow = new TableRow(result.getContext());\r
1094       tableRow.addView(textView);\r
1095       tableRow.setBackgroundResource(row.hasMainEntry ? theme.tokenRowMainBg : theme.tokenRowOtherBg);\r
1096       result.addView(tableRow);\r
1097       return result;\r
1098     }\r
1099     \r
1100   }\r
1101 \r
1102   static final Pattern CHAR_DASH = Pattern.compile("['\\p{L}\\p{M}\\p{N}]+");\r
1103 \r
1104   private void createTokenLinkSpans(final TextView textView, final Spannable spannable, final String text) {\r
1105     // Saw from the source code that LinkMovementMethod sets the selection!\r
1106     // http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/2.3.1_r1/android/text/method/LinkMovementMethod.java#LinkMovementMethod\r
1107     textView.setMovementMethod(LinkMovementMethod.getInstance());\r
1108     final Matcher matcher = CHAR_DASH.matcher(text);\r
1109     while (matcher.find()) {\r
1110       spannable.setSpan(new NonLinkClickableSpan(), matcher.start(), matcher.end(), Spannable.SPAN_INCLUSIVE_EXCLUSIVE);\r
1111     }\r
1112   }\r
1113   \r
1114 \r
1115   String selectedSpannableText = null;\r
1116   int selectedSpannableIndex = -1;\r
1117 \r
1118   @Override\r
1119   public boolean onTouchEvent(MotionEvent event) {\r
1120     selectedSpannableText = null;\r
1121     selectedSpannableIndex = -1;\r
1122     return super.onTouchEvent(event);\r
1123   }\r
1124 \r
1125   private class TextViewLongClickListener implements OnLongClickListener {\r
1126     final int index;\r
1127     \r
1128     private TextViewLongClickListener(final int index) {\r
1129       this.index = index;\r
1130     }\r
1131 \r
1132     @Override\r
1133     public boolean onLongClick(final View v) {\r
1134       final TextView textView = (TextView) v;\r
1135       final int start = textView.getSelectionStart();\r
1136       final int end = textView.getSelectionEnd();\r
1137       if (start >= 0 &&  end >= 0) {\r
1138         selectedSpannableText = textView.getText().subSequence(start, end).toString();\r
1139         selectedSpannableIndex = index;\r
1140       }\r
1141       return false;\r
1142     }\r
1143   }\r
1144   final TextViewLongClickListener textViewLongClickListenerIndex0 = new TextViewLongClickListener(0);\r
1145   final TextViewLongClickListener textViewLongClickListenerIndex1 = new TextViewLongClickListener(1);\r
1146   \r
1147 \r
1148   // --------------------------------------------------------------------------\r
1149   // SearchText\r
1150   // --------------------------------------------------------------------------\r
1151 \r
1152   void onSearchTextChange(final String text) {\r
1153     if ("thadolina".equals(text)) {\r
1154       final Dialog dialog = new Dialog(getListView().getContext());\r
1155       dialog.setContentView(R.layout.thadolina_dialog);\r
1156       dialog.setTitle("Ti amo, amore mio!");\r
1157       final ImageView imageView = (ImageView) dialog.findViewById(R.id.thadolina_image);\r
1158       imageView.setOnClickListener(new OnClickListener() {\r
1159         @Override\r
1160         public void onClick(View v) {\r
1161           final Intent intent = new Intent(Intent.ACTION_VIEW);\r
1162           intent.setData(Uri.parse("https://sites.google.com/site/cfoxroxvday/vday2012"));\r
1163           startActivity(intent);\r
1164         }\r
1165       });\r
1166       dialog.show();\r
1167     }\r
1168     if (dictRaf == null) {\r
1169       Log.d(LOG, "searchText changed during shutdown, doing nothing.");\r
1170       return;\r
1171     }\r
1172     if (!searchText.isFocused()) {\r
1173       Log.d(LOG, "searchText changed without focus, doing nothing.");\r
1174       return;\r
1175     }\r
1176     Log.d(LOG, "onSearchTextChange: " + text);    \r
1177     if (currentSearchOperation != null) {\r
1178       Log.d(LOG, "Interrupting currentSearchOperation.");\r
1179       currentSearchOperation.interrupted.set(true);\r
1180     }\r
1181     currentSearchOperation = new SearchOperation(text, index);\r
1182     searchExecutor.execute(currentSearchOperation);\r
1183   }\r
1184   \r
1185   private class SearchTextWatcher implements TextWatcher {\r
1186     public void afterTextChanged(final Editable searchTextEditable) {\r
1187       if (searchText.hasFocus()) {\r
1188         Log.d(LOG, "Search text changed with focus: " + searchText.getText());\r
1189         // If they were typing to cause the change, update the UI.\r
1190         onSearchTextChange(searchText.getText().toString());\r
1191       }\r
1192     }\r
1193 \r
1194     public void beforeTextChanged(CharSequence arg0, int arg1, int arg2,\r
1195         int arg3) {\r
1196     }\r
1197 \r
1198     public void onTextChanged(CharSequence arg0, int arg1, int arg2, int arg3) {\r
1199     }\r
1200   }\r
1201 \r
1202   // --------------------------------------------------------------------------\r
1203   // Filtered results.\r
1204   // --------------------------------------------------------------------------\r
1205 \r
1206   boolean isFiltered() {\r
1207     return rowsToShow != null;\r
1208   }\r
1209 \r
1210   void setFiltered(final SearchOperation searchOperation) {\r
1211     ((Button) findViewById(R.id.UpButton)).setEnabled(false);\r
1212     ((Button) findViewById(R.id.DownButton)).setEnabled(false);\r
1213     rowsToShow = searchOperation.multiWordSearchResult;\r
1214     setListAdapter(new IndexAdapter(index, rowsToShow, searchOperation.searchTokens));\r
1215   }\r
1216 \r
1217   void clearFiltered() {\r
1218     ((Button) findViewById(R.id.UpButton)).setEnabled(true);\r
1219     ((Button) findViewById(R.id.DownButton)).setEnabled(true);\r
1220     setListAdapter(new IndexAdapter(index));\r
1221     rowsToShow = null;\r
1222   }\r
1223 \r
1224 }\r