mirror of
https://github.com/material-components/material-components-android.git
synced 2026-01-17 18:41:49 +08:00
Add shapeAppearance and shapeAppearanceOverlay attributes. These attributes combine to support shapes theming. ShapeAppearance is modeled after TextAppearance. A shapeAppearance attribute contains a style reference that is meant to be defined at the theme level. Since changing anything defined in the shapeAppearance would clobber everything else in the ShapeAppearance, the shapeAppearanceOverlay attribute is provided for clients to modify the shapeAppearance. PiperOrigin-RevId: 215242636
37 lines
1.2 KiB
Java
37 lines
1.2 KiB
Java
/*
|
|
* Copyright 2018 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
|
|
*
|
|
* https://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.shape;
|
|
|
|
import android.support.annotation.RestrictTo;
|
|
import android.support.annotation.RestrictTo.Scope;
|
|
|
|
/** Utility methods for {@link MaterialShapeDrawable} and related classes. */
|
|
@RestrictTo(Scope.LIBRARY_GROUP)
|
|
public class MaterialShapeUtils {
|
|
|
|
static CornerTreatment createCornerTreatment(@CornerFamily int cornerFamily, int cornerSize) {
|
|
switch (cornerFamily) {
|
|
case CornerFamily.ROUNDED:
|
|
return new RoundedCornerTreatment(cornerSize);
|
|
case CornerFamily.CUT:
|
|
return new CutCornerTreatment(cornerSize);
|
|
default:
|
|
return new CornerTreatment();
|
|
}
|
|
}
|
|
}
|