/*
* Copyright 2016 Google Inc.
*
* 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 uk.co.nickbutcher.animatordurationtile;
import android.graphics.drawable.Icon;
import android.service.quicksettings.Tile;
import android.service.quicksettings.TileService;
import static uk.co.nickbutcher.animatordurationtile.AnimatorDurationScaler.getAnimatorScale;
import static uk.co.nickbutcher.animatordurationtile.AnimatorDurationScaler.getIcon;
/**
* A {@link TileService quick settings tile} for scaling animation durations. Toggles between 1x and
* 5x animator duration scales.
*/
public class ToggleAnimatorDuration extends TileService {
public ToggleAnimatorDuration() { }
@Override
public void onStartListening() {
super.onStartListening();
updateTile();
}
@Override
public void onClick() {
final float current = getAnimatorScale(getContentResolver());
final float target = current == 1f ? 5f : 1f;
AnimatorDurationScaler.setAnimatorScale(this, target);
updateTile();
}
private void updateTile() {
final float scale = getAnimatorScale(getContentResolver());
final Tile tile = getQsTile();
tile.setIcon(Icon.createWithResource(getApplicationContext(), getIcon(scale)));
tile.updateTile();
}
}