diff options
Diffstat (limited to 'src/github/daneren2005/dsub/fragments/SelectBookmarkFragment.java')
-rw-r--r-- | src/github/daneren2005/dsub/fragments/SelectBookmarkFragment.java | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/github/daneren2005/dsub/fragments/SelectBookmarkFragment.java b/src/github/daneren2005/dsub/fragments/SelectBookmarkFragment.java index a7f284b9..909e86f3 100644 --- a/src/github/daneren2005/dsub/fragments/SelectBookmarkFragment.java +++ b/src/github/daneren2005/dsub/fragments/SelectBookmarkFragment.java @@ -93,7 +93,7 @@ public class SelectBookmarkFragment extends SubsonicFragment implements AdapterV } @Override - protected void refresh(boolean refresh) { + protected void refresh(final boolean refresh) { setTitle(R.string.main_albums_genres); bookmarkListView.setVisibility(View.INVISIBLE); @@ -114,7 +114,7 @@ public class SelectBookmarkFragment extends SubsonicFragment implements AdapterV } @Override - protected void done(List<Genre> result) { + protected void done(List<Bookmark> result) { emptyView.setVisibility(result == null || result.isEmpty() ? View.VISIBLE : View.GONE); if (result != null) { @@ -125,4 +125,9 @@ public class SelectBookmarkFragment extends SubsonicFragment implements AdapterV }; task.execute(); } + + @Override + public void onItemClick(AdapterView<?> parent, View view, int position, long id) { + + } } |