mirror of
https://github.com/material-components/material-components-android.git
synced 2026-01-15 01:02:13 +08:00
111 lines
2.8 KiB
Java
111 lines
2.8 KiB
Java
/*
|
|
* Copyright 2017 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.google.android.material.circularreveal;
|
|
|
|
import android.content.Context;
|
|
import android.graphics.Canvas;
|
|
import android.graphics.drawable.Drawable;
|
|
import android.util.AttributeSet;
|
|
import android.widget.LinearLayout;
|
|
import androidx.annotation.ColorInt;
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.Nullable;
|
|
|
|
/** A CircularRevealWidget wrapper for {@link LinearLayout}. */
|
|
public class CircularRevealLinearLayout extends LinearLayout implements CircularRevealWidget {
|
|
|
|
@NonNull private final CircularRevealHelper helper;
|
|
|
|
public CircularRevealLinearLayout(Context context) {
|
|
this(context, null);
|
|
}
|
|
|
|
public CircularRevealLinearLayout(Context context, AttributeSet attrs) {
|
|
super(context, attrs);
|
|
helper = new CircularRevealHelper(this);
|
|
}
|
|
|
|
@Override
|
|
public void buildCircularRevealCache() {
|
|
helper.buildCircularRevealCache();
|
|
}
|
|
|
|
@Override
|
|
public void destroyCircularRevealCache() {
|
|
helper.destroyCircularRevealCache();
|
|
}
|
|
|
|
@Nullable
|
|
@Override
|
|
public RevealInfo getRevealInfo() {
|
|
return helper.getRevealInfo();
|
|
}
|
|
|
|
@Override
|
|
public void setRevealInfo(@Nullable RevealInfo revealInfo) {
|
|
helper.setRevealInfo(revealInfo);
|
|
}
|
|
|
|
@Override
|
|
public int getCircularRevealScrimColor() {
|
|
return helper.getCircularRevealScrimColor();
|
|
}
|
|
|
|
@Override
|
|
public void setCircularRevealScrimColor(@ColorInt int color) {
|
|
helper.setCircularRevealScrimColor(color);
|
|
}
|
|
|
|
@Nullable
|
|
@Override
|
|
public Drawable getCircularRevealOverlayDrawable() {
|
|
return helper.getCircularRevealOverlayDrawable();
|
|
}
|
|
|
|
@Override
|
|
public void setCircularRevealOverlayDrawable(@Nullable Drawable drawable) {
|
|
helper.setCircularRevealOverlayDrawable(drawable);
|
|
}
|
|
|
|
@Override
|
|
public void draw(@NonNull Canvas canvas) {
|
|
if (helper != null) {
|
|
helper.draw(canvas);
|
|
} else {
|
|
super.draw(canvas);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void actualDraw(Canvas canvas) {
|
|
super.draw(canvas);
|
|
}
|
|
|
|
@Override
|
|
public boolean isOpaque() {
|
|
if (helper != null) {
|
|
return helper.isOpaque();
|
|
} else {
|
|
return super.isOpaque();
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public boolean actualIsOpaque() {
|
|
return super.isOpaque();
|
|
}
|
|
}
|