blob: 2f1cb7566130ed8a14f949dc8ed13a0741339a27 [file] [log] [blame]
/*
* Copyright (C) 2016 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.android.car.radio;
import android.content.Context;
import android.media.session.PlaybackState;
import android.util.AttributeSet;
import android.util.Log;
import android.widget.ImageView;
/**
* An {@link ImageView} that renders a play/pause button like a floating action button.
*/
public class PlayPauseButton extends ImageView {
private static final String TAG = "Em.PlayPauseButton";
private static final int[] STATE_PLAYING = {R.attr.state_playing};
private static final int[] STATE_PAUSED = {R.attr.state_paused};
private int mPlaybackState = -1;
public PlayPauseButton(Context context, AttributeSet attrs) {
super(context, attrs);
}
/**
* Set the current play state of the button.
*
* @param playState One of the values from {@link PlaybackState}.
*/
public void setPlayState(int playState) {
mPlaybackState = playState;
}
@Override
public int[] onCreateDrawableState(int extraSpace) {
// + 1 so we can potentially add our custom PlayState
final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
switch(mPlaybackState) {
case PlaybackState.STATE_PLAYING:
mergeDrawableStates(drawableState, STATE_PLAYING);
break;
case PlaybackState.STATE_NONE:
case PlaybackState.STATE_PAUSED:
case PlaybackState.STATE_STOPPED:
case PlaybackState.STATE_CONNECTING:
mergeDrawableStates(drawableState, STATE_PAUSED);
break;
default:
Log.e(TAG, "Unsupported PlaybackState: " + mPlaybackState);
}
if (getBackground() != null) {
getBackground().setState(drawableState);
}
return drawableState;
}
}