From 3301d8b4fb3b70901b5c612310f9e9643d23f524 Mon Sep 17 00:00:00 2001 From: madiyar Date: Tue, 23 Feb 2016 14:36:24 +0600 Subject: [PATCH 1/3] Created suggestion adapter --- .../schabi/newpipe/SuggestionListAdapter.java | 75 +++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 app/src/main/java/org/schabi/newpipe/SuggestionListAdapter.java diff --git a/app/src/main/java/org/schabi/newpipe/SuggestionListAdapter.java b/app/src/main/java/org/schabi/newpipe/SuggestionListAdapter.java new file mode 100644 index 000000000..bdb6c36ef --- /dev/null +++ b/app/src/main/java/org/schabi/newpipe/SuggestionListAdapter.java @@ -0,0 +1,75 @@ +package org.schabi.newpipe; + +import android.content.Context; +import android.database.Cursor; +import android.database.MatrixCursor; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.CursorAdapter; +import android.widget.TextView; + +import java.util.ArrayList; + +/** + * Created by Madiyar on 23.02.2016. + */ +public class SuggestionListAdapter extends CursorAdapter { + + private ArrayList suggestions; + private String[] columns = new String[]{"_id", "title"}; + + public SuggestionListAdapter(Context context) { + super(context, null, false); + + } + + public ArrayList getSuggestions() { + return suggestions; + } + + public void setSuggestions(ArrayList suggestions) { + this.suggestions = suggestions; + } + + @Override + public View newView(Context context, Cursor cursor, ViewGroup parent) { + ViewHolder viewHolder; + + View view = LayoutInflater.from(context).inflate(android.R.layout.simple_list_item_1, parent, false); + viewHolder = new ViewHolder(); + viewHolder.suggestionTitle = (TextView) view.findViewById(android.R.id.text1); + view.setTag(viewHolder); + + + return view; + } + + @Override + public void bindView(View view, Context context, Cursor cursor) { + ViewHolder viewHolder = (ViewHolder) view.getTag(); + viewHolder.suggestionTitle.setText(cursor.getString(1)); + } + + + public void updateAdapter(ArrayList suggestions) { + MatrixCursor cursor = new MatrixCursor(columns); + int i = 0; + for (String s : suggestions) { + String[] temp = new String[2]; + temp[0] = Integer.toString(i); + temp[1] = s; + i++; + cursor.addRow(temp); + } + changeCursor(cursor); + } + + public String getSuggestion(int position) { + return ((Cursor) getItem(position)).getString(1); + } + + private class ViewHolder { + public TextView suggestionTitle; + } +} From c7679bec8760ed925f1fece71a806aee90e72bc5 Mon Sep 17 00:00:00 2001 From: madiyar Date: Tue, 23 Feb 2016 15:01:59 +0600 Subject: [PATCH 2/3] Added suggestion to the searching --- .../schabi/newpipe/SuggestionListAdapter.java | 2 +- .../schabi/newpipe/VideoItemListActivity.java | 92 ++++++++++++++++++- 2 files changed, 89 insertions(+), 5 deletions(-) diff --git a/app/src/main/java/org/schabi/newpipe/SuggestionListAdapter.java b/app/src/main/java/org/schabi/newpipe/SuggestionListAdapter.java index bdb6c36ef..9eb7a4c28 100644 --- a/app/src/main/java/org/schabi/newpipe/SuggestionListAdapter.java +++ b/app/src/main/java/org/schabi/newpipe/SuggestionListAdapter.java @@ -3,10 +3,10 @@ package org.schabi.newpipe; import android.content.Context; import android.database.Cursor; import android.database.MatrixCursor; +import android.support.v4.widget.CursorAdapter; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; -import android.widget.CursorAdapter; import android.widget.TextView; import java.util.ArrayList; diff --git a/app/src/main/java/org/schabi/newpipe/VideoItemListActivity.java b/app/src/main/java/org/schabi/newpipe/VideoItemListActivity.java index f6c8938a8..fcc458cb3 100644 --- a/app/src/main/java/org/schabi/newpipe/VideoItemListActivity.java +++ b/app/src/main/java/org/schabi/newpipe/VideoItemListActivity.java @@ -3,6 +3,7 @@ package org.schabi.newpipe; import android.content.Context; import android.content.Intent; import android.os.Bundle; +import android.os.Handler; import android.preference.PreferenceManager; import android.support.v4.app.NavUtils; import android.support.v7.app.AppCompatActivity; @@ -14,10 +15,14 @@ import android.view.MenuItem; import android.view.View; import android.view.inputmethod.InputMethodManager; -import java.util.ArrayList; - -import org.schabi.newpipe.extractor.VideoPreviewInfo; +import org.schabi.newpipe.extractor.ExtractionException; +import org.schabi.newpipe.extractor.SearchEngine; import org.schabi.newpipe.extractor.ServiceList; +import org.schabi.newpipe.extractor.StreamingService; +import org.schabi.newpipe.extractor.VideoPreviewInfo; + +import java.io.IOException; +import java.util.ArrayList; /** * Copyright (C) Christian Schabesberger 2015 @@ -61,6 +66,11 @@ public class VideoItemListActivity extends AppCompatActivity private VideoItemDetailFragment videoFragment = null; private Menu menu = null; + private SuggestionListAdapter suggestionListAdapter; + private StreamingService streamingService; + private SuggestionSearchRunnable suggestionSearchRunnable; + private Thread searchThread; + private class SearchVideoQueryListener implements SearchView.OnQueryTextListener { @Override @@ -94,11 +104,70 @@ public class VideoItemListActivity extends AppCompatActivity @Override public boolean onQueryTextChange(String newText) { + searchSuggestions(newText); return true; } } + private class SearchSuggestionListener implements SearchView.OnSuggestionListener{ + private SearchView searchView; + + private SearchSuggestionListener(SearchView searchView) { + this.searchView = searchView; + } + + @Override + public boolean onSuggestionSelect(int position) { + String suggestion = suggestionListAdapter.getSuggestion(position); + searchView.setQuery(suggestion,true); + return false; + } + + @Override + public boolean onSuggestionClick(int position) { + String suggestion = suggestionListAdapter.getSuggestion(position); + searchView.setQuery(suggestion,true); + return false; + } + } + + private class SuggestionResultRunnable implements Runnable{ + + private ArrayListsuggestions; + + private SuggestionResultRunnable(ArrayList suggestions) { + this.suggestions = suggestions; + } + + @Override + public void run() { + suggestionListAdapter.updateAdapter(suggestions); + } + } + + private class SuggestionSearchRunnable implements Runnable{ + private final SearchEngine engine; + private final String query; + final Handler h = new Handler(); + + private SuggestionSearchRunnable(SearchEngine engine, String query) { + this.engine = engine; + this.query = query; + } + + @Override + public void run() { + try { + ArrayListsuggestions = engine.suggestionList(query,new Downloader()); + h.post(new SuggestionResultRunnable(suggestions)); + } catch (ExtractionException e) { + e.printStackTrace(); + } catch (IOException e) { + e.printStackTrace(); + } + } + } /** * Whether or not the activity is in two-pane mode, i.e. running on a tablet * device. @@ -112,11 +181,12 @@ public class VideoItemListActivity extends AppCompatActivity //------ todo: remove this line when multiservice support is implemented ------ currentStreamingServiceId = ServiceList.getIdOfService("Youtube"); + streamingService=ServiceList.getService(currentStreamingServiceId); //----------------------------------------------------------------------------- //to solve issue 38 listFragment = (VideoItemListFragment) getSupportFragmentManager() .findFragmentById(R.id.videoitem_list); - listFragment.setStreamingService(ServiceList.getService(currentStreamingServiceId)); + listFragment.setStreamingService(streamingService); Bundle arguments = getIntent().getExtras(); @@ -168,6 +238,9 @@ public class VideoItemListActivity extends AppCompatActivity searchView.setIconifiedByDefault(false); searchView.setIconified(false); searchView.setOnQueryTextListener(new SearchVideoQueryListener()); + suggestionListAdapter = new SuggestionListAdapter(this); + searchView.setSuggestionsAdapter(suggestionListAdapter); + searchView.setOnSuggestionListener(new SearchSuggestionListener(searchView)); } else { searchView.setVisibility(View.GONE); } @@ -237,6 +310,9 @@ public class VideoItemListActivity extends AppCompatActivity searchView.setFocusable(false); searchView.setOnQueryTextListener( new SearchVideoQueryListener()); + suggestionListAdapter = new SuggestionListAdapter(this); + searchView.setSuggestionsAdapter(suggestionListAdapter); + searchView.setOnSuggestionListener(new SearchSuggestionListener(searchView)); } else if (videoFragment != null){ videoFragment.onCreateOptionsMenu(menu, inflater); @@ -281,4 +357,12 @@ public class VideoItemListActivity extends AppCompatActivity outState.putString(QUERY, searchQuery); outState.putInt(STREAMING_SERVICE, currentStreamingServiceId); } + + private void searchSuggestions(String query) { + suggestionSearchRunnable = new SuggestionSearchRunnable(streamingService.getSearchEngineInstance(), + query); + searchThread = new Thread(suggestionSearchRunnable); + searchThread.start(); + + } } From 8fc113cc52da5556f3228936b2becfa2df920637 Mon Sep 17 00:00:00 2001 From: madiyar Date: Tue, 23 Feb 2016 16:22:49 +0600 Subject: [PATCH 3/3] Added country language param to the suggestionList method in search engine --- .../extractor/youtube/YoutubeSearchEngineTest.java | 2 +- .../java/org/schabi/newpipe/SuggestionListAdapter.java | 10 ---------- .../java/org/schabi/newpipe/VideoItemListActivity.java | 10 ++++++++-- .../org/schabi/newpipe/extractor/SearchEngine.java | 2 +- .../services/youtube/YoutubeSearchEngine.java | 3 ++- 5 files changed, 12 insertions(+), 15 deletions(-) diff --git a/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeSearchEngineTest.java b/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeSearchEngineTest.java index 7ab6cacf3..ea52539fb 100644 --- a/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeSearchEngineTest.java +++ b/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeSearchEngineTest.java @@ -40,7 +40,7 @@ public class YoutubeSearchEngineTest extends AndroidTestCase { result = engine.search("https://www.youtube.com/results?search_query=bla", 0, "de", new Downloader()); - suggestionReply = engine.suggestionList("hello", new Downloader()); + suggestionReply = engine.suggestionList("hello","de",new Downloader()); } public void testIfNoErrorOccur() { diff --git a/app/src/main/java/org/schabi/newpipe/SuggestionListAdapter.java b/app/src/main/java/org/schabi/newpipe/SuggestionListAdapter.java index 9eb7a4c28..53e824c78 100644 --- a/app/src/main/java/org/schabi/newpipe/SuggestionListAdapter.java +++ b/app/src/main/java/org/schabi/newpipe/SuggestionListAdapter.java @@ -16,20 +16,10 @@ import java.util.ArrayList; */ public class SuggestionListAdapter extends CursorAdapter { - private ArrayList suggestions; private String[] columns = new String[]{"_id", "title"}; public SuggestionListAdapter(Context context) { super(context, null, false); - - } - - public ArrayList getSuggestions() { - return suggestions; - } - - public void setSuggestions(ArrayList suggestions) { - this.suggestions = suggestions; } @Override diff --git a/app/src/main/java/org/schabi/newpipe/VideoItemListActivity.java b/app/src/main/java/org/schabi/newpipe/VideoItemListActivity.java index fcc458cb3..e60c4d176 100644 --- a/app/src/main/java/org/schabi/newpipe/VideoItemListActivity.java +++ b/app/src/main/java/org/schabi/newpipe/VideoItemListActivity.java @@ -2,6 +2,7 @@ package org.schabi.newpipe; import android.content.Context; import android.content.Intent; +import android.content.SharedPreferences; import android.os.Bundle; import android.os.Handler; import android.preference.PreferenceManager; @@ -150,16 +151,21 @@ public class VideoItemListActivity extends AppCompatActivity private final SearchEngine engine; private final String query; final Handler h = new Handler(); - + private Context context; private SuggestionSearchRunnable(SearchEngine engine, String query) { this.engine = engine; this.query = query; + context = VideoItemListActivity.this; } @Override public void run() { try { - ArrayListsuggestions = engine.suggestionList(query,new Downloader()); + SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(context); + String searchLanguageKey = context.getString(R.string.search_language_key); + String searchLanguage = sp.getString(searchLanguageKey, + getString(R.string.default_language_value)); + ArrayListsuggestions = engine.suggestionList(query,searchLanguage,new Downloader()); h.post(new SuggestionResultRunnable(suggestions)); } catch (ExtractionException e) { e.printStackTrace(); diff --git a/app/src/main/java/org/schabi/newpipe/extractor/SearchEngine.java b/app/src/main/java/org/schabi/newpipe/extractor/SearchEngine.java index be176d39e..74f3f0f60 100644 --- a/app/src/main/java/org/schabi/newpipe/extractor/SearchEngine.java +++ b/app/src/main/java/org/schabi/newpipe/extractor/SearchEngine.java @@ -33,7 +33,7 @@ public interface SearchEngine { public final List resultList = new Vector<>(); } - ArrayList suggestionList(String query, Downloader dl) + ArrayList suggestionList(String query,String contentCountry, Downloader dl) throws ExtractionException, IOException; //Result search(String query, int page); diff --git a/app/src/main/java/org/schabi/newpipe/extractor/services/youtube/YoutubeSearchEngine.java b/app/src/main/java/org/schabi/newpipe/extractor/services/youtube/YoutubeSearchEngine.java index fd7528926..4f24fb5bd 100644 --- a/app/src/main/java/org/schabi/newpipe/extractor/services/youtube/YoutubeSearchEngine.java +++ b/app/src/main/java/org/schabi/newpipe/extractor/services/youtube/YoutubeSearchEngine.java @@ -147,7 +147,7 @@ public class YoutubeSearchEngine implements SearchEngine { } @Override - public ArrayList suggestionList(String query, Downloader dl) + public ArrayList suggestionList(String query,String contentCountry, Downloader dl) throws IOException, ParsingException { ArrayList suggestions = new ArrayList<>(); @@ -160,6 +160,7 @@ public class YoutubeSearchEngine implements SearchEngine { .appendQueryParameter("client", "") .appendQueryParameter("output", "toolbar") .appendQueryParameter("ds", "yt") + .appendQueryParameter("hl",contentCountry) .appendQueryParameter("q", query); String url = builder.build().toString();