We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 302091e commit ac1f398Copy full SHA for ac1f398
example/src/main/res/values/strings.xml
@@ -90,15 +90,15 @@
90
CodeView codeView = (CodeView) findViewById(R.id.code_view);\n
91
\n
92
// use chaining to build view\n
93
- codeView.highlightCode("js")\n
+ codeView.highlightCode(\"js\")\n
94
.setColorTheme(ColorTheme.SOLARIZED_LIGHT.withBgContent(myColor))\n
95
.setCodeContent(getString(R.string.listing_js));\n
96
97
// do not use chaining for built view\n
98
// (you can, but follow it should be performed sequentially)\n
99
codeView.setCodeContent(getString(R.string.listing_java));\n
100
- codeView.highlightCode("java");
101
- }
+ codeView.highlightCode("java");\n
+ }\n
102
}
103
</string>
104
0 commit comments