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.
2 parents 302091e + ac1f398 commit 63ffdf4Copy full SHA for 63ffdf4
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