Java tutorial
/* * Copyright (C) 2014 The Android Open Source Project * * 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.appdevper.mediaplayer.activity; import android.app.ActivityManager; import android.content.ComponentName; import android.content.Context; import android.content.Intent; import android.content.ServiceConnection; import android.graphics.BitmapFactory; import android.os.Build; import android.os.Bundle; import android.os.IBinder; import android.os.RemoteException; import android.support.annotation.NonNull; import android.support.v4.media.MediaBrowserCompat; import android.support.v4.media.MediaMetadataCompat; import android.support.v4.media.session.MediaControllerCompat; import android.support.v4.media.session.MediaSessionCompat; import android.support.v4.media.session.PlaybackStateCompat; import android.util.Log; import com.appdevper.mediaplayer.R; import com.appdevper.mediaplayer.app.AppMediaPlayer; import com.appdevper.mediaplayer.app.MusicService; import com.appdevper.mediaplayer.app.ServerSettings; import com.appdevper.mediaplayer.app.ServerUpnpService; import com.appdevper.mediaplayer.ui.PlaybackControlsFragment; import com.appdevper.mediaplayer.util.LogHelper; import com.appdevper.mediaplayer.util.NetworkHelper; import com.appdevper.mediaplayer.util.ResourceHelper; import org.fourthline.cling.android.AndroidUpnpService; /** * Base activity for activities that need to show a playback control fragment when media is playing. */ public abstract class BaseActivity extends ActionBarCastActivity { private static final String TAG = LogHelper.makeLogTag(BaseActivity.class); private PlaybackControlsFragment mControlsFragment; private MusicService mService; private ServiceConnection serviceConnection = new ServiceConnection() { public void onServiceConnected(ComponentName className, IBinder service) { mService = ((MusicService.LocalBinder) service).getService(); try { connectToSession(mService.getSessionToken()); } catch (RemoteException e) { e.printStackTrace(); } } public void onServiceDisconnected(ComponentName className) { //AppMediaPlayer.setUpnpService(null); mService = null; } }; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); LogHelper.d(TAG, "Activity onCreate"); if (Build.VERSION.SDK_INT >= 21) { // Since our app icon has the same color as colorPrimary, our entry in the Recent Apps // list gets weird. We need to change either the icon or the color // of the TaskDescription. ActivityManager.TaskDescription taskDesc = new ActivityManager.TaskDescription(getTitle().toString(), BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher_white), ResourceHelper.getThemeColor(this, R.attr.colorPrimary, android.R.color.darker_gray)); setTaskDescription(taskDesc); } // mMediaBrowser = new MediaBrowserCompat(this, // new ComponentName(this, MusicService.class), mConnectionCallback, null); Intent intent = new Intent(this, MusicService.class); bindService(intent, serviceConnection, Context.BIND_AUTO_CREATE); } @Override protected void onStart() { super.onStart(); LogHelper.d(TAG, "Activity onStart"); mControlsFragment = (PlaybackControlsFragment) getFragmentManager() .findFragmentById(R.id.fragment_playback_controls); if (mControlsFragment == null) { throw new IllegalStateException("Mising fragment with id 'controls'. Cannot continue."); } hidePlaybackControls(); // mMediaBrowser.connect(); } @Override protected void onStop() { super.onStop(); LogHelper.d(TAG, "Activity onStop"); if (getSupportMediaController() != null) { getSupportMediaController().unregisterCallback(mMediaControllerCallback); } //mMediaBrowser.disconnect(); } @Override protected void onDestroy() { super.onDestroy(); unbindService(serviceConnection); } protected void onMediaControllerConnected() { // empty implementation, can be overridden by clients. } protected void showPlaybackControls() { LogHelper.d(TAG, "showPlaybackControls"); if (NetworkHelper.isOnline(this)) { getFragmentManager().beginTransaction() .setCustomAnimations(R.animator.slide_in_from_bottom, R.animator.slide_out_to_bottom, R.animator.slide_in_from_bottom, R.animator.slide_out_to_bottom) .show(mControlsFragment).commit(); } } protected void hidePlaybackControls() { LogHelper.d(TAG, "hidePlaybackControls"); getFragmentManager().beginTransaction().hide(mControlsFragment).commit(); } /** * Check if the MediaSession is active and in a "playback-able" state * (not NONE and not STOPPED). * * @return true if the MediaSession's state requires playback controls to be visible. */ protected boolean shouldShowControls() { MediaControllerCompat mediaController = getSupportMediaController(); if (mediaController == null || mediaController.getMetadata() == null || mediaController.getPlaybackState() == null) { return false; } switch (mediaController.getPlaybackState().getState()) { case PlaybackStateCompat.STATE_ERROR: case PlaybackStateCompat.STATE_NONE: case PlaybackStateCompat.STATE_STOPPED: return false; default: return true; } } private void connectToSession(MediaSessionCompat.Token token) throws RemoteException { MediaControllerCompat mediaController = new MediaControllerCompat(this, token); setSupportMediaController(mediaController); mediaController.registerCallback(mMediaControllerCallback); if (shouldShowControls()) { showPlaybackControls(); } else { LogHelper.d(TAG, "connectionCallback.onConnected: " + "hiding controls because metadata is null"); hidePlaybackControls(); } if (mControlsFragment != null) { mControlsFragment.onConnected(); } onMediaControllerConnected(); } // Callback that ensures that we are showing the controls private final MediaControllerCompat.Callback mMediaControllerCallback = new MediaControllerCompat.Callback() { @Override public void onPlaybackStateChanged(@NonNull PlaybackStateCompat state) { if (shouldShowControls()) { showPlaybackControls(); } else { LogHelper.d(TAG, "mediaControllerCallback.onPlaybackStateChanged: " + "hiding controls because state is ", state.getState()); hidePlaybackControls(); } } @Override public void onMetadataChanged(MediaMetadataCompat metadata) { if (shouldShowControls()) { showPlaybackControls(); } else { LogHelper.d(TAG, "mediaControllerCallback.onMetadataChanged: " + "hiding controls because metadata is null"); hidePlaybackControls(); } } }; }