OSDN Git Service

Automatic translation import
[android-x86/packages-apps-Eleven.git] / src / com / cyngn / eleven / ui / fragments / profile / LastAddedFragment.java
1 /*
2  * Copyright (C) 2012 Andrew Neal Licensed under the Apache License, Version 2.0
3  * (the "License"); you may not use this file except in compliance with the
4  * License. You may obtain a copy of the License at
5  * http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law
6  * or agreed to in writing, software distributed under the License is
7  * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
8  * KIND, either express or implied. See the License for the specific language
9  * governing permissions and limitations under the License.
10  */
11
12 package com.cyngn.eleven.ui.fragments.profile;
13
14 import android.app.Activity;
15 import android.database.Cursor;
16 import android.os.Bundle;
17 import android.os.SystemClock;
18 import android.support.v4.app.Fragment;
19 import android.support.v4.app.LoaderManager.LoaderCallbacks;
20 import android.support.v4.content.Loader;
21 import android.view.ContextMenu;
22 import android.view.ContextMenu.ContextMenuInfo;
23 import android.view.LayoutInflater;
24 import android.view.Menu;
25 import android.view.SubMenu;
26 import android.view.View;
27 import android.view.ViewGroup;
28 import android.widget.AdapterView;
29 import android.widget.AdapterView.AdapterContextMenuInfo;
30 import android.widget.AdapterView.OnItemClickListener;
31 import android.widget.ListView;
32 import android.widget.TextView;
33
34 import com.cyngn.eleven.R;
35 import com.cyngn.eleven.adapters.ProfileSongAdapter;
36 import com.cyngn.eleven.loaders.LastAddedLoader;
37 import com.cyngn.eleven.menu.CreateNewPlaylist;
38 import com.cyngn.eleven.menu.DeleteDialog;
39 import com.cyngn.eleven.menu.FragmentMenuItems;
40 import com.cyngn.eleven.model.Song;
41 import com.cyngn.eleven.provider.FavoritesStore;
42 import com.cyngn.eleven.recycler.RecycleHolder;
43 import com.cyngn.eleven.utils.MusicUtils;
44 import com.cyngn.eleven.utils.NavUtils;
45 import com.cyngn.eleven.widgets.ProfileTabCarousel;
46 import com.cyngn.eleven.widgets.VerticalScrollListener;
47
48 import java.util.List;
49
50 /**
51  * This class is used to display all of the songs the user put on their device
52  * within the last four weeks.
53  * 
54  * @author Andrew Neal (andrewdneal@gmail.com)
55  */
56 public class LastAddedFragment extends Fragment implements LoaderCallbacks<List<Song>>,
57         OnItemClickListener {
58
59     /**
60      * Used to keep context menu items from bleeding into other fragments
61      */
62     private static final int GROUP_ID = 7;
63
64     /**
65      * LoaderCallbacks identifier
66      */
67     private static final int LOADER = 0;
68
69     /**
70      * Fragment UI
71      */
72     private ViewGroup mRootView;
73
74     /**
75      * The adapter for the list
76      */
77     private ProfileSongAdapter mAdapter;
78
79     /**
80      * The list view
81      */
82     private ListView mListView;
83
84     /**
85      * Represents a song
86      */
87     private Song mSong;
88
89     /**
90      * Position of a context menu item
91      */
92     private int mSelectedPosition;
93
94     /**
95      * Id of a context menu item
96      */
97     private long mSelectedId;
98
99     /**
100      * Song, album, and artist name used in the context menu
101      */
102     private String mSongName, mAlbumName, mArtistName;
103
104     /**
105      * Profile header
106      */
107     private ProfileTabCarousel mProfileTabCarousel;
108
109     /**
110      * Empty constructor as per the {@link Fragment} documentation
111      */
112     public LastAddedFragment() {
113     }
114
115     /**
116      * {@inheritDoc}
117      */
118     @Override
119     public void onAttach(final Activity activity) {
120         super.onAttach(activity);
121         mProfileTabCarousel = (ProfileTabCarousel)activity
122                 .findViewById(R.id.acivity_profile_base_tab_carousel);
123     }
124
125     /**
126      * {@inheritDoc}
127      */
128     @Override
129     public void onCreate(final Bundle savedInstanceState) {
130         super.onCreate(savedInstanceState);
131         // Create the adpater
132         mAdapter = new ProfileSongAdapter(
133                 getActivity(),
134                 R.layout.list_item_simple,
135                 ProfileSongAdapter.DISPLAY_PLAYLIST_SETTING
136         );
137     }
138
139     /**
140      * {@inheritDoc}
141      */
142     @Override
143     public View onCreateView(final LayoutInflater inflater, final ViewGroup container,
144             final Bundle savedInstanceState) {
145         // The View for the fragment's UI
146         mRootView = (ViewGroup)inflater.inflate(R.layout.list_base, null);
147         // Initialize the list
148         mListView = (ListView)mRootView.findViewById(R.id.list_base);
149         // Set the data behind the list
150         mListView.setAdapter(mAdapter);
151         // Release any references to the recycled Views
152         mListView.setRecyclerListener(new RecycleHolder());
153         // Listen for ContextMenus to be created
154         mListView.setOnCreateContextMenuListener(this);
155         // Play the selected song
156         mListView.setOnItemClickListener(this);
157         // To help make scrolling smooth
158         mListView.setOnScrollListener(new VerticalScrollListener(null, mProfileTabCarousel, 0));
159         // Remove the scrollbars and padding for the fast scroll
160         mListView.setVerticalScrollBarEnabled(false);
161         mListView.setFastScrollEnabled(false);
162         mListView.setPadding(0, 0, 0, 0);
163         return mRootView;
164     }
165
166     /**
167      * {@inheritDoc}
168      */
169     @Override
170     public void onActivityCreated(final Bundle savedInstanceState) {
171         super.onActivityCreated(savedInstanceState);
172         // Enable the options menu
173         setHasOptionsMenu(true);
174         // Start the loader
175         getLoaderManager().initLoader(LOADER, null, this);
176     }
177
178     /**
179      * {@inheritDoc}
180      */
181     @Override
182     public void onCreateContextMenu(final ContextMenu menu, final View v,
183             final ContextMenuInfo menuInfo) {
184         super.onCreateContextMenu(menu, v, menuInfo);
185         // Get the position of the selected item
186         final AdapterContextMenuInfo info = (AdapterContextMenuInfo)menuInfo;
187         mSelectedPosition = info.position - 1;
188         // Creat a new song
189         mSong = mAdapter.getItem(mSelectedPosition);
190         mSelectedId = mSong.mSongId;
191         mSongName = mSong.mSongName;
192         mAlbumName = mSong.mAlbumName;
193         mArtistName = mSong.mArtistName;
194
195         // Play the song
196         menu.add(GROUP_ID, FragmentMenuItems.PLAY_SELECTION, Menu.NONE,
197                 getString(R.string.context_menu_play_selection));
198
199         // Play next
200         menu.add(GROUP_ID, FragmentMenuItems.PLAY_NEXT, Menu.NONE,
201                 getString(R.string.context_menu_play_next));
202
203         // Add the song to the queue
204         menu.add(GROUP_ID, FragmentMenuItems.ADD_TO_QUEUE, Menu.NONE,
205                 getString(R.string.add_to_queue));
206
207         // Add the song to a playlist
208         final SubMenu subMenu = menu.addSubMenu(GROUP_ID, FragmentMenuItems.ADD_TO_PLAYLIST,
209                 Menu.NONE, R.string.add_to_playlist);
210         MusicUtils.makePlaylistMenu(getActivity(), GROUP_ID, subMenu, false);
211
212         // View more content by the song artist
213         menu.add(GROUP_ID, FragmentMenuItems.MORE_BY_ARTIST, Menu.NONE,
214                 getString(R.string.context_menu_more_by_artist));
215
216         // Make the song a ringtone
217         menu.add(GROUP_ID, FragmentMenuItems.USE_AS_RINGTONE, Menu.NONE,
218                 getString(R.string.context_menu_use_as_ringtone));
219
220         // Delete the song
221         menu.add(GROUP_ID, FragmentMenuItems.DELETE, Menu.NONE,
222                 getString(R.string.context_menu_delete));
223     }
224
225     @Override
226     public boolean onContextItemSelected(final android.view.MenuItem item) {
227         if (item.getGroupId() == GROUP_ID) {
228             switch (item.getItemId()) {
229                 case FragmentMenuItems.PLAY_SELECTION:
230                     MusicUtils.playAll(getActivity(), new long[] {
231                         mSelectedId
232                     }, 0, false);
233                     return true;
234                 case FragmentMenuItems.PLAY_NEXT:
235                     MusicUtils.playNext(new long[] {
236                         mSelectedId
237                     });
238                     return true;
239                 case FragmentMenuItems.ADD_TO_QUEUE:
240                     MusicUtils.addToQueue(getActivity(), new long[] {
241                         mSelectedId
242                     });
243                     return true;
244                 case FragmentMenuItems.ADD_TO_FAVORITES:
245                     FavoritesStore.getInstance(getActivity()).addSongId(
246                             mSelectedId, mSongName, mAlbumName, mArtistName);
247                     return true;
248                 case FragmentMenuItems.NEW_PLAYLIST:
249                     CreateNewPlaylist.getInstance(new long[] {
250                         mSelectedId
251                     }).show(getFragmentManager(), "CreatePlaylist");
252                     return true;
253                 case FragmentMenuItems.PLAYLIST_SELECTED:
254                     final long mPlaylistId = item.getIntent().getLongExtra("playlist", 0);
255                     MusicUtils.addToPlaylist(getActivity(), new long[] {
256                         mSelectedId
257                     }, mPlaylistId);
258                     return true;
259                 case FragmentMenuItems.MORE_BY_ARTIST:
260                     NavUtils.openArtistProfile(getActivity(), mArtistName);
261                     return true;
262                 case FragmentMenuItems.USE_AS_RINGTONE:
263                     MusicUtils.setRingtone(getActivity(), mSelectedId);
264                     return true;
265                 case FragmentMenuItems.DELETE:
266                     DeleteDialog.newInstance(mSong.mSongName, new long[] {
267                         mSelectedId
268                     }, null).show(getFragmentManager(), "DeleteDialog");
269                     SystemClock.sleep(10);
270                     mAdapter.notifyDataSetChanged();
271                     getLoaderManager().restartLoader(LOADER, null, this);
272                     return true;
273                 default:
274                     break;
275             }
276         }
277         return super.onContextItemSelected(item);
278     }
279
280     /**
281      * {@inheritDoc}
282      */
283     @Override
284     public void onItemClick(final AdapterView<?> parent, final View view, final int position,
285             final long id) {
286         if (position == 0) {
287             return;
288         }
289         Cursor cursor = LastAddedLoader.makeLastAddedCursor(getActivity());
290         final long[] list = MusicUtils.getSongListForCursor(cursor);
291         MusicUtils.playAll(getActivity(), list, position - 1, false);
292         cursor.close();
293         cursor = null;
294     }
295
296     /**
297      * {@inheritDoc}
298      */
299     @Override
300     public Loader<List<Song>> onCreateLoader(final int id, final Bundle args) {
301         return new LastAddedLoader(getActivity());
302     }
303
304     /**
305      * {@inheritDoc}
306      */
307     @Override
308     public void onLoadFinished(final Loader<List<Song>> loader, final List<Song> data) {
309         // Check for any errors
310         if (data.isEmpty()) {
311             // Set the empty text
312             final TextView empty = (TextView)mRootView.findViewById(R.id.empty);
313             empty.setText(getString(R.string.empty_last_added));
314             mListView.setEmptyView(empty);
315             return;
316         }
317
318         // Start fresh
319         mAdapter.unload();
320         // Return the correct count
321         mAdapter.setCount(data);
322         // Add the data to the adpater
323         for (final Song song : data) {
324             mAdapter.add(song);
325         }
326     }
327
328     /**
329      * {@inheritDoc}
330      */
331     @Override
332     public void onLoaderReset(final Loader<List<Song>> loader) {
333         // Clear the data in the adapter
334         mAdapter.unload();
335     }
336
337 }