From 560f1436da74c789e6001519a86a1582d8d836fd Mon Sep 17 00:00:00 2001 From: daneren2005 Date: Fri, 8 Nov 2013 16:31:38 -0800 Subject: Create SelectBookmarkFragment.java --- .../dsub/fragments/SelectBookmarkFragment.java | 128 +++++++++++++++++++++ 1 file changed, 128 insertions(+) create mode 100644 src/github/daneren2005/dsub/fragments/SelectBookmarkFragment.java diff --git a/src/github/daneren2005/dsub/fragments/SelectBookmarkFragment.java b/src/github/daneren2005/dsub/fragments/SelectBookmarkFragment.java new file mode 100644 index 00000000..a7f284b9 --- /dev/null +++ b/src/github/daneren2005/dsub/fragments/SelectBookmarkFragment.java @@ -0,0 +1,128 @@ +/* + This file is part of Subsonic. + + Subsonic is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Subsonic is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Subsonic. If not, see . + + Copyright 2010 (C) Sindre Mehus +*/ +package github.daneren2005.dsub.fragments; + +import android.os.Bundle; +import android.util.Log; +import android.view.LayoutInflater; +import android.view.Menu; +import android.view.MenuInflater; +import android.view.MenuItem; +import android.view.View; +import android.view.ViewGroup; +import android.widget.AdapterView; +import android.widget.ListView; +import github.daneren2005.dsub.R; +import github.daneren2005.dsub.domain.Bookmark; +import github.daneren2005.dsub.service.MusicService; +import github.daneren2005.dsub.service.MusicServiceFactory; +import github.daneren2005.dsub.util.BackgroundTask; +import github.daneren2005.dsub.util.Constants; +import github.daneren2005.dsub.util.TabBackgroundTask; +import github.daneren2005.dsub.view.BookmarkAdapter; +import java.io.Serializable; +import java.util.ArrayList; +import java.util.List; + +public class SelectBookmarkFragment extends SubsonicFragment implements AdapterView.OnItemClickListener { + private static final String TAG = SelectBookmarkFragment.class.getSimpleName(); + private ListView bookmarkListView; + private View emptyView; + private List bookmarks; + + @Override + public void onCreate(Bundle bundle) { + super.onCreate(bundle); + + if(bundle != null) { + bookmarks = (List) bundle.getSerializable(Constants.FRAGMENT_LIST); + } + } + + @Override + public void onSaveInstanceState(Bundle outState) { + super.onSaveInstanceState(outState); + outState.putSerializable(Constants.FRAGMENT_LIST, (Serializable) bookmarks); + } + + @Override + public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle bundle) { + rootView = inflater.inflate(R.layout.select_genres, container, false); + + bookmarkListView = (ListView)rootView.findViewById(R.id.select_genre_list); + bookmarkListView.setOnItemClickListener(this); + emptyView = rootView.findViewById(R.id.select_genre_empty); + + if(bookmarks == null) { + refresh(); + } else { + bookmarkListView.setAdapter(new BookmarkAdapter(context, bookmarks)); + } + + return rootView; + } + + @Override + public void onCreateOptionsMenu(Menu menu, MenuInflater menuInflater) { + menuInflater.inflate(R.menu.select_genres, menu); + } + + @Override + public boolean onOptionsItemSelected(MenuItem item) { + if(super.onOptionsItemSelected(item)) { + return true; + } + + return false; + } + + @Override + protected void refresh(boolean refresh) { + setTitle(R.string.main_albums_genres); + bookmarkListView.setVisibility(View.INVISIBLE); + + BackgroundTask> task = new TabBackgroundTask>(this) { + @Override + protected List doInBackground() throws Throwable { + MusicService musicService = MusicServiceFactory.getMusicService(context); + + bookmarks = new ArrayList(); + + try { + bookmarks = musicService.getBookmarks(refresh, context, this); + } catch (Exception x) { + Log.e(TAG, "Failed to load bookmarks", x); + } + + return bookmarks; + } + + @Override + protected void done(List result) { + emptyView.setVisibility(result == null || result.isEmpty() ? View.VISIBLE : View.GONE); + + if (result != null) { + bookmarkListView.setAdapter(new BookmarkAdapter(context, result)); + bookmarkListView.setVisibility(View.VISIBLE); + } + } + }; + task.execute(); + } +} -- cgit v1.2.3