summaryrefslogtreecommitdiff
path: root/vdrmanager/src
diff options
context:
space:
mode:
Diffstat (limited to 'vdrmanager/src')
-rw-r--r--vdrmanager/src/de/bjusystems/vdrmanager/data/db/EPGSearchSuggestionsProvider.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/vdrmanager/src/de/bjusystems/vdrmanager/data/db/EPGSearchSuggestionsProvider.java b/vdrmanager/src/de/bjusystems/vdrmanager/data/db/EPGSearchSuggestionsProvider.java
new file mode 100644
index 0000000..3ff6162
--- /dev/null
+++ b/vdrmanager/src/de/bjusystems/vdrmanager/data/db/EPGSearchSuggestionsProvider.java
@@ -0,0 +1,23 @@
+package de.bjusystems.vdrmanager.data.db;
+
+import android.content.SearchRecentSuggestionsProvider;
+
+public class EPGSearchSuggestionsProvider extends
+ SearchRecentSuggestionsProvider {
+
+
+ public final static String AUTHORITY = EPGSearchSuggestionsProvider.class.getName();
+
+ public final static int MODE = DATABASE_MODE_QUERIES;// | DATABASE_MODE_2LINES;
+
+ public EPGSearchSuggestionsProvider() {
+ setupSuggestions(AUTHORITY, MODE);
+ }
+
+
+ public static enum SecondLine {
+ EPG,
+ EPG_SEARCH,
+ }
+
+}