Search Results: Clarify documentation and strings`
This commit is contained in:
parent
b4b51e6e58
commit
16e640ab1a
|
@ -97,11 +97,7 @@ public class SearchlistAdapter extends BaseAdapter {
|
|||
holder.subtitle.setText(result.getSubtitle());
|
||||
}
|
||||
|
||||
if(item.isPlayed()) {
|
||||
ViewHelper.setAlpha(convertView, 0.5f);
|
||||
} else {
|
||||
ViewHelper.setAlpha(convertView, 1.0f);
|
||||
}
|
||||
ViewHelper.setAlpha(convertView, item.isPlayed() ? 0.5f : 1.0f);
|
||||
|
||||
Glide.with(context)
|
||||
.load(item.getFeed().getImageLocation())
|
||||
|
|
|
@ -21,7 +21,15 @@ public class FeedSearcher {
|
|||
|
||||
|
||||
/**
|
||||
* Performs a search in all feeds or one specific feed.
|
||||
* Search through a feed, or all feeds, for episodes that match the query in either the title,
|
||||
* chapter, or show notes. The search is first performed on titles, then chapters, and finally
|
||||
* show notes. The list of resulting episodes also describes where the first match occurred
|
||||
* (title, chapters, or show notes).
|
||||
*
|
||||
* @param context
|
||||
* @param query search query
|
||||
* @param selectedFeed feed to search, 0 to search through all feeds
|
||||
* @return list of episodes containing the query
|
||||
*/
|
||||
public static List<SearchResult> performSearch(final Context context,
|
||||
final String query, final long selectedFeed) {
|
||||
|
|
|
@ -415,8 +415,8 @@
|
|||
<string name="auto_flattr_ater_end">Flattr episode when playback ends</string>
|
||||
|
||||
<!-- Search -->
|
||||
<string name="search_hint">Search for Feeds or Episodes</string>
|
||||
<string name="found_in_shownotes_label">Found in shownotes</string>
|
||||
<string name="search_hint">Search for episodes</string>
|
||||
<string name="found_in_shownotes_label">Found in show notes</string>
|
||||
<string name="found_in_chapters_label">Found in chapters</string>
|
||||
<string name="search_status_no_results">No results were found</string>
|
||||
<string name="search_label">Search</string>
|
||||
|
|
Loading…
Reference in New Issue