| 1218 | } |
| 1219 | |
| 1220 | public void showBrowser( final FileInfo fileToShow ) |
| 1221 | { |
| 1222 | log.v("showBrowser() is called"); |
| 1223 | if ( currentView == mReaderView ) |
| 1224 | mReaderView.save(); |
| 1225 | mEngine.runInGUI( new Runnable() { |
| 1226 | public void run() { |
| 1227 | showView(mBrowser); |
| 1228 | if (fileToShow==null || mBrowser.isBookShownInRecentList(fileToShow)) |
| 1229 | mBrowser.showLastDirectory(); |
| 1230 | else |
| 1231 | mBrowser.showDirectory(fileToShow, fileToShow); |
| 1232 | } |
| 1233 | }); |
| 1234 | } |
| 1235 | |
| 1236 | public void showBrowserRecentBooks() |
| 1237 | { |