com.racoon.ampdroid.views.SongsView.java Source code

Java tutorial

Introduction

Here is the source code for com.racoon.ampdroid.views.SongsView.java

Source

/**
 * The MIT License (MIT)
 * 
 * Copyright (c) 2014 Daniel Schruhl
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy of
 * this software and associated documentation files (the "Software"), to deal in
 * the Software without restriction, including without limitation the rights to
 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
 * the Software, and to permit persons to whom the Software is furnished to do so,
 * subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 * 
 */
package com.racoon.ampdroid.views;

import java.util.ArrayList;

import android.annotation.SuppressLint;
import android.content.Context;
import android.os.Build;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.util.Log;
import android.view.ContextMenu;
import android.view.LayoutInflater;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.view.ContextMenu.ContextMenuInfo;
import android.widget.AdapterView;
import android.widget.ListView;
import android.widget.Toast;
import android.widget.AdapterView.AdapterContextMenuInfo;

import com.racoon.ampache.Song;
import com.racoon.ampdroid.Controller;
import com.racoon.ampdroid.MainActivity;
import com.racoon.ampdroid.R;
import com.racoon.ampdroid.SongArrayAdapter;

/**
 * @author Daniel Schruhl
 * 
 */
public class SongsView extends Fragment {

    // private String urlString;
    private Controller controller;

    /**
     * 
     */
    public SongsView() {
        // TODO Auto-generated constructor stub
    }

    public static Fragment newInstance(Context context) {
        SongsView p = new SongsView();
        return p;
    }

    @SuppressLint("InflateParams")
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        controller = Controller.getInstance();
        ViewGroup root = (ViewGroup) inflater.inflate(R.layout.ampache_songs, null);
        ListView listview = (ListView) root.findViewById(R.id.songs_listview);
        registerForContextMenu(listview);

        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
            listview.setFastScrollAlwaysVisible(true);
        }
        if (controller.getServer() != null) {
            ArrayList<String> list = new ArrayList<String>();
            for (Song s : controller.getSongs()) {
                list.add(s.toString());
            }
            SongArrayAdapter adapter = new SongArrayAdapter(getActivity().getApplicationContext(), list,
                    controller.getSongs());
            listview.setAdapter(adapter);
            listview.setOnItemClickListener(new AdapterView.OnItemClickListener() {
                @Override
                public void onItemClick(AdapterView<?> parent, final View view, int position, long id) {
                    Log.d("Play now added:", controller.getSongs().get(position).toString());
                    controller.getPlayNow().add(controller.getSongs().get(position));
                    Context context = view.getContext();
                    CharSequence text = getResources().getString(R.string.songsViewSongAdded);
                    int duration = Toast.LENGTH_SHORT;
                    Toast toast = Toast.makeText(context, text, duration);
                    toast.show();
                }

            });
        }
        return root;
    }

    @Override
    public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {
        super.onCreateContextMenu(menu, v, menuInfo);
        MenuInflater inflater = getActivity().getMenuInflater();
        inflater.inflate(R.menu.context_menu_songs, menu);
    }

    @Override
    public boolean onContextItemSelected(MenuItem item) {
        AdapterContextMenuInfo info = (AdapterContextMenuInfo) item.getMenuInfo();

        switch (item.getItemId()) {
        case R.id.contextMenuAdd:
            controller.getPlayNow().add(controller.getSongs().get((int) info.id));
            Context context = getView().getContext();
            CharSequence text = getResources().getString(R.string.songsViewSongAdded);
            int duration = Toast.LENGTH_SHORT;
            Toast toast = Toast.makeText(context, text, duration);
            toast.show();
            return true;
        case R.id.contextMenuSongsOpen:
            controller.getPlayNow().clear();
            controller.getPlayNow().add(controller.getSongs().get((int) info.id));
            ((MainActivity) getActivity()).play(0);
            return true;
        default:
            return super.onContextItemSelected(item);
        }
    }
}