Attaches the song's metadata to the intent - Android Intent

Android examples for Intent:Intent Bundle

Description

Attaches the song's metadata to the intent

Demo Code

/*/*from   w  w  w.  jav  a  2  s  . c  o m*/
 * Copyright (C) 2014 Saravan Pantham
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
//package com.java2s;

import android.content.Intent;

public class Main {
    public static Intent mSimpleLastFMIntent;

    /**
     * Attaches the song's metadata to the intent that was initialized in 
     * <i>initializeActionIntent()</i>.
     */
    public static void attachMetadata(int state, String artist,
            String album, String track, int durationInSecs) {
        mSimpleLastFMIntent.putExtra("state", state);
        mSimpleLastFMIntent.putExtra("app-name", "Jams Music Player");
        mSimpleLastFMIntent
                .putExtra("app-package", "com.jams.music.player");
        mSimpleLastFMIntent.putExtra("artist", artist);
        mSimpleLastFMIntent.putExtra("album", album);
        mSimpleLastFMIntent.putExtra("track", track);
        mSimpleLastFMIntent.putExtra("duration", durationInSecs);

    }
}

Related Tutorials