mirror of
https://github.com/material-components/material-components-android.git
synced 2026-01-20 20:12:52 +08:00
This gives internal its own res directory, and pushes the build files down into the source directory (as it is with all our other non-widget packages). Ideally new things don't really get added to this package (instead they can be added to feature/component-specific packages as package private). A few new packages had to be created in order to break circular dependencies between widget and internal. This commit also fixes a number of problems with the Gradle build, as they were mostly related to dependency issues or things not being included in settings.gradle. The next step here is to do the same for the widget package, and turn the lib build files into something that just exports the other library packages. PiperOrigin-RevId: 179866428
268 lines
8.3 KiB
Java
268 lines
8.3 KiB
Java
/*
|
|
* Copyright (C) 2015 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 android.support.design.internal;
|
|
|
|
import static android.support.annotation.RestrictTo.Scope.LIBRARY_GROUP;
|
|
|
|
import android.content.Context;
|
|
import android.content.res.ColorStateList;
|
|
import android.graphics.Color;
|
|
import android.graphics.drawable.ColorDrawable;
|
|
import android.graphics.drawable.Drawable;
|
|
import android.graphics.drawable.StateListDrawable;
|
|
import android.support.annotation.RestrictTo;
|
|
import android.support.v4.content.res.ResourcesCompat;
|
|
import android.support.v4.graphics.drawable.DrawableCompat;
|
|
import android.support.v4.view.AccessibilityDelegateCompat;
|
|
import android.support.v4.view.ViewCompat;
|
|
import android.support.v4.view.accessibility.AccessibilityEventCompat;
|
|
import android.support.v4.view.accessibility.AccessibilityNodeInfoCompat;
|
|
import android.support.v4.widget.TextViewCompat;
|
|
import android.support.v7.view.menu.MenuItemImpl;
|
|
import android.support.v7.view.menu.MenuView;
|
|
import android.support.v7.widget.TooltipCompat;
|
|
import android.util.AttributeSet;
|
|
import android.util.TypedValue;
|
|
import android.view.LayoutInflater;
|
|
import android.view.View;
|
|
import android.view.ViewStub;
|
|
import android.widget.CheckedTextView;
|
|
import android.widget.FrameLayout;
|
|
|
|
/** @hide */
|
|
@RestrictTo(LIBRARY_GROUP)
|
|
public class NavigationMenuItemView extends ForegroundLinearLayout implements MenuView.ItemView {
|
|
|
|
private static final int[] CHECKED_STATE_SET = {android.R.attr.state_checked};
|
|
|
|
private final int iconSize;
|
|
|
|
private boolean needsEmptyIcon;
|
|
|
|
boolean checkable;
|
|
|
|
private final CheckedTextView textView;
|
|
|
|
private FrameLayout actionArea;
|
|
|
|
private MenuItemImpl itemData;
|
|
|
|
private ColorStateList iconTintList;
|
|
|
|
private boolean hasIconTintList;
|
|
|
|
private Drawable emptyDrawable;
|
|
|
|
private final AccessibilityDelegateCompat accessibilityDelegate =
|
|
new AccessibilityDelegateCompat() {
|
|
|
|
@Override
|
|
public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) {
|
|
super.onInitializeAccessibilityNodeInfo(host, info);
|
|
info.setCheckable(checkable);
|
|
}
|
|
};
|
|
|
|
public NavigationMenuItemView(Context context) {
|
|
this(context, null);
|
|
}
|
|
|
|
public NavigationMenuItemView(Context context, AttributeSet attrs) {
|
|
this(context, attrs, 0);
|
|
}
|
|
|
|
public NavigationMenuItemView(Context context, AttributeSet attrs, int defStyleAttr) {
|
|
super(context, attrs, defStyleAttr);
|
|
setOrientation(HORIZONTAL);
|
|
LayoutInflater.from(context).inflate(R.layout.design_navigation_menu_item, this, true);
|
|
iconSize = context.getResources().getDimensionPixelSize(R.dimen.design_navigation_icon_size);
|
|
textView = findViewById(R.id.design_menu_item_text);
|
|
textView.setDuplicateParentStateEnabled(true);
|
|
ViewCompat.setAccessibilityDelegate(textView, accessibilityDelegate);
|
|
}
|
|
|
|
@Override
|
|
public void initialize(MenuItemImpl itemData, int menuType) {
|
|
this.itemData = itemData;
|
|
|
|
setVisibility(itemData.isVisible() ? VISIBLE : GONE);
|
|
|
|
if (getBackground() == null) {
|
|
ViewCompat.setBackground(this, createDefaultBackground());
|
|
}
|
|
|
|
setCheckable(itemData.isCheckable());
|
|
setChecked(itemData.isChecked());
|
|
setEnabled(itemData.isEnabled());
|
|
setTitle(itemData.getTitle());
|
|
setIcon(itemData.getIcon());
|
|
setActionView(itemData.getActionView());
|
|
setContentDescription(itemData.getContentDescription());
|
|
TooltipCompat.setTooltipText(this, itemData.getTooltipText());
|
|
adjustAppearance();
|
|
}
|
|
|
|
private boolean shouldExpandActionArea() {
|
|
return itemData.getTitle() == null
|
|
&& itemData.getIcon() == null
|
|
&& itemData.getActionView() != null;
|
|
}
|
|
|
|
private void adjustAppearance() {
|
|
if (shouldExpandActionArea()) {
|
|
// Expand the actionView area
|
|
textView.setVisibility(View.GONE);
|
|
if (actionArea != null) {
|
|
LayoutParams params = (LayoutParams) actionArea.getLayoutParams();
|
|
params.width = LayoutParams.MATCH_PARENT;
|
|
actionArea.setLayoutParams(params);
|
|
}
|
|
} else {
|
|
textView.setVisibility(View.VISIBLE);
|
|
if (actionArea != null) {
|
|
LayoutParams params = (LayoutParams) actionArea.getLayoutParams();
|
|
params.width = LayoutParams.WRAP_CONTENT;
|
|
actionArea.setLayoutParams(params);
|
|
}
|
|
}
|
|
}
|
|
|
|
public void recycle() {
|
|
if (actionArea != null) {
|
|
actionArea.removeAllViews();
|
|
}
|
|
textView.setCompoundDrawables(null, null, null, null);
|
|
}
|
|
|
|
private void setActionView(View actionView) {
|
|
if (actionView != null) {
|
|
if (actionArea == null) {
|
|
actionArea =
|
|
(FrameLayout)
|
|
((ViewStub) findViewById(R.id.design_menu_item_action_area_stub)).inflate();
|
|
}
|
|
actionArea.removeAllViews();
|
|
actionArea.addView(actionView);
|
|
}
|
|
}
|
|
|
|
private StateListDrawable createDefaultBackground() {
|
|
TypedValue value = new TypedValue();
|
|
if (getContext()
|
|
.getTheme()
|
|
.resolveAttribute(android.support.v7.appcompat.R.attr.colorControlHighlight, value, true)) {
|
|
StateListDrawable drawable = new StateListDrawable();
|
|
drawable.addState(CHECKED_STATE_SET, new ColorDrawable(value.data));
|
|
drawable.addState(EMPTY_STATE_SET, new ColorDrawable(Color.TRANSPARENT));
|
|
return drawable;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public MenuItemImpl getItemData() {
|
|
return itemData;
|
|
}
|
|
|
|
@Override
|
|
public void setTitle(CharSequence title) {
|
|
textView.setText(title);
|
|
}
|
|
|
|
@Override
|
|
public void setCheckable(boolean checkable) {
|
|
refreshDrawableState();
|
|
if (this.checkable != checkable) {
|
|
this.checkable = checkable;
|
|
accessibilityDelegate.sendAccessibilityEvent(
|
|
textView, AccessibilityEventCompat.TYPE_WINDOW_CONTENT_CHANGED);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void setChecked(boolean checked) {
|
|
refreshDrawableState();
|
|
textView.setChecked(checked);
|
|
}
|
|
|
|
@Override
|
|
public void setShortcut(boolean showShortcut, char shortcutKey) {}
|
|
|
|
@Override
|
|
public void setIcon(Drawable icon) {
|
|
if (icon != null) {
|
|
if (hasIconTintList) {
|
|
Drawable.ConstantState state = icon.getConstantState();
|
|
icon = DrawableCompat.wrap(state == null ? icon : state.newDrawable()).mutate();
|
|
DrawableCompat.setTintList(icon, iconTintList);
|
|
}
|
|
icon.setBounds(0, 0, iconSize, iconSize);
|
|
} else if (needsEmptyIcon) {
|
|
if (emptyDrawable == null) {
|
|
emptyDrawable =
|
|
ResourcesCompat.getDrawable(
|
|
getResources(), R.drawable.navigation_empty_icon, getContext().getTheme());
|
|
if (emptyDrawable != null) {
|
|
emptyDrawable.setBounds(0, 0, iconSize, iconSize);
|
|
}
|
|
}
|
|
icon = emptyDrawable;
|
|
}
|
|
TextViewCompat.setCompoundDrawablesRelative(textView, icon, null, null, null);
|
|
}
|
|
|
|
@Override
|
|
public boolean prefersCondensedTitle() {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public boolean showsIcon() {
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
protected int[] onCreateDrawableState(int extraSpace) {
|
|
final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
|
|
if (itemData != null && itemData.isCheckable() && itemData.isChecked()) {
|
|
mergeDrawableStates(drawableState, CHECKED_STATE_SET);
|
|
}
|
|
return drawableState;
|
|
}
|
|
|
|
void setIconTintList(ColorStateList tintList) {
|
|
iconTintList = tintList;
|
|
hasIconTintList = iconTintList != null;
|
|
if (itemData != null) {
|
|
// Update the icon so that the tint takes effect
|
|
setIcon(itemData.getIcon());
|
|
}
|
|
}
|
|
|
|
public void setTextAppearance(int textAppearance) {
|
|
TextViewCompat.setTextAppearance(textView, textAppearance);
|
|
}
|
|
|
|
public void setTextColor(ColorStateList colors) {
|
|
textView.setTextColor(colors);
|
|
}
|
|
|
|
public void setNeedsEmptyIcon(boolean needsEmptyIcon) {
|
|
this.needsEmptyIcon = needsEmptyIcon;
|
|
}
|
|
}
|