Loading core/java/android/view/textclassifier/TextClassifier.java +3 −2 Original line number Diff line number Diff line Loading @@ -164,9 +164,10 @@ public interface TextClassifier { TextClassifier NO_OP = new TextClassifier() {}; /** * Used as a boolean value to indicate the intent is generated by TextClassifier. * Extra that is included on activity intents coming from a TextClassifier when * it suggests actions to its caller. * <p> * All {@link TextClassifier} implementations should set this boolean extra to be true in their * All {@link TextClassifier} implementations should make sure this extra exists in their * generated intents. */ String EXTRA_FROM_TEXT_CLASSIFIER = "android.view.textclassifier.extra.FROM_TEXT_CLASSIFIER"; Loading Loading
core/java/android/view/textclassifier/TextClassifier.java +3 −2 Original line number Diff line number Diff line Loading @@ -164,9 +164,10 @@ public interface TextClassifier { TextClassifier NO_OP = new TextClassifier() {}; /** * Used as a boolean value to indicate the intent is generated by TextClassifier. * Extra that is included on activity intents coming from a TextClassifier when * it suggests actions to its caller. * <p> * All {@link TextClassifier} implementations should set this boolean extra to be true in their * All {@link TextClassifier} implementations should make sure this extra exists in their * generated intents. */ String EXTRA_FROM_TEXT_CLASSIFIER = "android.view.textclassifier.extra.FROM_TEXT_CLASSIFIER"; Loading