mirror of
https://github.com/material-components/material-components-android.git
synced 2026-01-16 18:01:42 +08:00
91 lines
3.4 KiB
Java
91 lines
3.4 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
|
|
*
|
|
* 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.theme;
|
|
|
|
import android.content.Context;
|
|
import android.os.Build.VERSION;
|
|
import android.os.Build.VERSION_CODES;
|
|
import androidx.annotation.Keep;
|
|
import androidx.annotation.NonNull;
|
|
import com.google.android.material.button.MaterialButton;
|
|
import com.google.android.material.checkbox.MaterialCheckBox;
|
|
import com.google.android.material.radiobutton.MaterialRadioButton;
|
|
import androidx.appcompat.app.AppCompatViewInflater;
|
|
import androidx.appcompat.widget.AppCompatButton;
|
|
import androidx.appcompat.widget.AppCompatCheckBox;
|
|
import androidx.appcompat.widget.AppCompatRadioButton;
|
|
import android.util.AttributeSet;
|
|
|
|
/**
|
|
* An extension of {@link AppCompatViewInflater} that replaces some framework widgets with Material
|
|
* Components ones at inflation time, provided a Material Components theme is in use.
|
|
*/
|
|
@Keep // Make proguard keep this class as it's accessed reflectively by AppCompat
|
|
public class MaterialComponentsViewInflater extends AppCompatViewInflater {
|
|
|
|
// Cached background resource ID used for workaround to not inflate MaterialButton in
|
|
// API 23 FloatingToolbar. Technically 0 is the only invalid resource ID, but we are assuming
|
|
// it's safe to use -1 as a sentinel here.
|
|
private static int floatingToolbarItemBackgroundResId = -1;
|
|
|
|
@NonNull
|
|
@Override
|
|
protected AppCompatButton createButton(Context context, AttributeSet attrs) {
|
|
if (VERSION.SDK_INT == VERSION_CODES.M && isFloatingToolbarItemButton(context, attrs)) {
|
|
return new AppCompatButton(context, attrs);
|
|
}
|
|
|
|
return new MaterialButton(context, attrs);
|
|
}
|
|
|
|
private boolean isFloatingToolbarItemButton(Context context, AttributeSet attrs) {
|
|
// Workaround for FloatingToolbar inflating floating_popup_menu_button.xml on API 23, which
|
|
// should not have MaterialButton styling.
|
|
if (floatingToolbarItemBackgroundResId == -1) {
|
|
floatingToolbarItemBackgroundResId =
|
|
context
|
|
.getResources()
|
|
.getIdentifier("floatingToolbarItemBackgroundDrawable", "^attr-private", "android");
|
|
}
|
|
|
|
if (floatingToolbarItemBackgroundResId != 0 && floatingToolbarItemBackgroundResId != -1) {
|
|
for (int i = 0; i < attrs.getAttributeCount(); i++) {
|
|
if (attrs.getAttributeNameResource(i) == android.R.attr.background) {
|
|
int backgroundResourceId = attrs.getAttributeListValue(i, null, 0);
|
|
if (floatingToolbarItemBackgroundResId == backgroundResourceId) {
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
@NonNull
|
|
@Override
|
|
protected AppCompatCheckBox createCheckBox(Context context, AttributeSet attrs) {
|
|
return new MaterialCheckBox(context, attrs);
|
|
}
|
|
|
|
@NonNull
|
|
@Override
|
|
protected AppCompatRadioButton createRadioButton(Context context, AttributeSet attrs) {
|
|
return new MaterialRadioButton(context, attrs);
|
|
}
|
|
}
|