blob: cf7e3127dedf7d120875e980ca5e9f8fa779a895 [file] [log] [blame]
/*
* Copyright (C) 2022 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.systemui.dreams.complication;
import android.content.Context;
import android.content.res.Resources;
import android.graphics.Canvas;
import android.util.AttributeSet;
import android.widget.TextView;
import com.android.systemui.R;
import kotlin.Unit;
/**
* Extension of {@link TextView} which draws two shadows on the text (ambient and key shadows}
*/
public class DoubleShadowTextView extends TextView {
private final DoubleShadowTextHelper mShadowHelper;
public DoubleShadowTextView(Context context) {
this(context, null);
}
public DoubleShadowTextView(Context context, AttributeSet attrs) {
this(context, attrs, 0);
}
public DoubleShadowTextView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
final Resources resources = context.getResources();
final DoubleShadowTextHelper.ShadowInfo
keyShadowInfo = new DoubleShadowTextHelper.ShadowInfo(
resources.getDimensionPixelSize(
R.dimen.dream_overlay_status_bar_key_text_shadow_radius),
resources.getDimensionPixelSize(
R.dimen.dream_overlay_status_bar_key_text_shadow_dx),
resources.getDimensionPixelSize(
R.dimen.dream_overlay_status_bar_key_text_shadow_dy),
resources.getColor(R.color.dream_overlay_status_bar_key_text_shadow_color));
final DoubleShadowTextHelper.ShadowInfo
ambientShadowInfo = new DoubleShadowTextHelper.ShadowInfo(
resources.getDimensionPixelSize(
R.dimen.dream_overlay_status_bar_ambient_text_shadow_radius),
resources.getDimensionPixelSize(
R.dimen.dream_overlay_status_bar_ambient_text_shadow_dx),
resources.getDimensionPixelSize(
R.dimen.dream_overlay_status_bar_ambient_text_shadow_dy),
resources.getColor(R.color.dream_overlay_status_bar_ambient_text_shadow_color));
mShadowHelper = new DoubleShadowTextHelper(keyShadowInfo, ambientShadowInfo);
}
@Override
public void onDraw(Canvas canvas) {
mShadowHelper.applyShadows(this, canvas, () -> {
super.onDraw(canvas);
return Unit.INSTANCE;
});
}
}