summaryrefslogtreecommitdiff
path: root/app/src/main/java/de/danoeh/antennapod/adapter/SearchlistAdapter.java
AgeCommit message (Collapse)Author
2016-05-02Use strings to point to images, not urisMartin Fietz
2016-04-14Enable full hyphenation on Android 6Martin Fietz
2016-03-22code cleaning:Domingos Lopes
- lambda expressions, method references, - multi catches, - remove unnecessary keywords (public keyword on interface method signatures, static on interfaces or enums, final on private method signatures), - == false expressions, - diamond type (<>) expressions, - replace StringBuffer with StringBuilder for local variables used by a single thread, - replace Arrays.asList with Collections.singletonList whenever applicable, - inline variable returns (whenever the variable name's meaning is not important to understand the code), - replace some chains of if/else if/... with switch/case, - break append(a + b) into append(a).append(b) for StringBuilder objects, - unused import statements, - reduce log TAGs to 23 characters, - MaterialDialog callback deprecated, - ActionBarActivity for AppCompatActivity,
2015-08-08Cache all images (should reduce lag displaying lists of episodes)Tom Hennen
Cache strategy is now set in ApGlideSettings and referenced everywhere else from there.
2015-07-29Replace Picasso with GlideMartin Fietz
2014-11-10Updated picasso librarydaniel oeh
Use RequestHandler instead of Downloader for extracting bitmaps from media files
2014-09-19Moved non-gui classes to 'core' packagedaniel oeh
2014-09-17Changed project structuredaniel oeh
Switched from custom layout to standard gradle project structure