HomeSort by relevance Sort by last modified time
    Searched refs:wikiText (Results 1 - 2 of 2) sorted by null

  /development/samples/Wiktionary/src/com/example/android/wiktionary/
ExtendedWikiHelper.java 234 * @param wikiText The raw text to format, with wiki-markup included.
237 public static String formatWikiText(String wikiText) {
238 if (wikiText == null) {
244 wikiText = wikiText.concat(STUB_SECTION);
251 Matcher sectionMatcher = sSectionSplit.matcher(wikiText);
263 wikiText = builder.toString();
267 wikiText = rule.apply(wikiText);
271 if (!TextUtils.isEmpty(wikiText)) {
    [all...]
LookupActivity.java 292 String wikiText = ExtendedWikiHelper.getPageContent(query, true);
293 parsedText = ExtendedWikiHelper.formatWikiText(wikiText);

Completed in 38 milliseconds