summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2020-04-01 23:59:49 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2020-04-01 23:59:49 +0000
commitaf6c77b0e2acd6bd3bc5d468bb07fadc8a0fe6fa (patch)
tree1210e864f669f412543de9c7d56c9bc5e6e0ef46
parent48a31819c11d3ee7508f3fb364617925684c362b (diff)
parent1bfcbdf43d5a1d515bb386ca278f09313cacb067 (diff)
Merge "[WifiTrackerLib] add interface for help icon of WifiEntry" into rvc-dev
-rw-r--r--libs/WifiTrackerLib/src/com/android/wifitrackerlib/WifiEntry.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/libs/WifiTrackerLib/src/com/android/wifitrackerlib/WifiEntry.java b/libs/WifiTrackerLib/src/com/android/wifitrackerlib/WifiEntry.java
index 221829312..afe8b5fba 100644
--- a/libs/WifiTrackerLib/src/com/android/wifitrackerlib/WifiEntry.java
+++ b/libs/WifiTrackerLib/src/com/android/wifitrackerlib/WifiEntry.java
@@ -400,6 +400,16 @@ public abstract class WifiEntry implements Comparable<WifiEntry> {
return false;
};
+ /**
+ * Return the URI string value of help, if it is not null, WifiPicker may show
+ * help icon and route the user to help page specified by the URI string.
+ * see {@link Intent#parseUri}
+ */
+ @Nullable
+ public String getHelpUriString() {
+ return null;
+ }
+
/** Allows the user to manage their subscription via an external flow */
public void manageSubscription() {
// Subclasses should implement this method.