MCPcopy Create free account
hub / github.com/buggins/coolreader / showOptionsDialog

Method showOptionsDialog

android/src/org/coolreader/CoolReader.java:1415–1429  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1413 String[] mFontFaces;
1414
1415 public void showOptionsDialog()
1416 {
1417 final CoolReader _this = this;
1418 mBackgroundThread.executeBackground(new Runnable() {
1419 public void run() {
1420 mFontFaces = mEngine.getFontFaceList();
1421 mBackgroundThread.executeGUI(new Runnable() {
1422 public void run() {
1423 OptionsDialog dlg = new OptionsDialog(_this, mReaderView, mFontFaces);
1424 dlg.show();
1425 }
1426 });
1427 }
1428 });
1429 }
1430
1431 public void saveSetting( String name, String value ) {
1432 mReaderView.saveSetting(name, value);

Callers 1

onCommandMethod · 0.80

Calls 1

executeBackgroundMethod · 0.80

Tested by

no test coverage detected