blob: 1809789bcd3681c413ae324a2317dd6f688c64d8 [file] [log] [blame]
/*
* 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 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.design.R;
import android.support.v4.graphics.drawable.DrawableCompat;
import android.support.v4.widget.TextViewCompat;
import android.support.v7.internal.view.menu.MenuItemImpl;
import android.support.v7.internal.view.menu.MenuView;
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
*/
public class NavigationMenuItemView extends ForegroundLinearLayout implements MenuView.ItemView {
private static final int[] CHECKED_STATE_SET = {android.R.attr.state_checked};
private final int mIconSize;
private final CheckedTextView mTextView;
private FrameLayout mActionArea;
private MenuItemImpl mItemData;
private ColorStateList mIconTintList;
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);
mIconSize = context.getResources().getDimensionPixelSize(
R.dimen.design_navigation_icon_size);
mTextView = (CheckedTextView) findViewById(R.id.design_menu_item_text);
mTextView.setDuplicateParentStateEnabled(true);
}
@Override
public void initialize(MenuItemImpl itemData, int menuType) {
mItemData = itemData;
setVisibility(itemData.isVisible() ? VISIBLE : GONE);
if (getBackground() == null) {
setBackgroundDrawable(createDefaultBackground());
}
setCheckable(itemData.isCheckable());
setChecked(itemData.isChecked());
setEnabled(itemData.isEnabled());
setTitle(itemData.getTitle());
setIcon(itemData.getIcon());
setActionView(itemData.getActionView());
}
public void recycle() {
if (mActionArea != null) {
mActionArea.removeAllViews();
}
mTextView.setCompoundDrawables(null, null, null, null);
}
private void setActionView(View actionView) {
if (mActionArea == null) {
mActionArea = (FrameLayout) ((ViewStub) findViewById(
R.id.design_menu_item_action_area_stub)).inflate();
}
mActionArea.removeAllViews();
if (actionView != null) {
mActionArea.addView(actionView);
}
}
private StateListDrawable createDefaultBackground() {
TypedValue value = new TypedValue();
if (getContext().getTheme().resolveAttribute(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 mItemData;
}
@Override
public void setTitle(CharSequence title) {
mTextView.setText(title);
}
@Override
public void setCheckable(boolean checkable) {
refreshDrawableState();
}
@Override
public void setChecked(boolean checked) {
refreshDrawableState();
mTextView.setChecked(checked);
}
@Override
public void setShortcut(boolean showShortcut, char shortcutKey) {
}
@Override
public void setIcon(Drawable icon) {
if (icon != null) {
icon = DrawableCompat.wrap(icon.getConstantState().newDrawable()).mutate();
icon.setBounds(0, 0, mIconSize, mIconSize);
DrawableCompat.setTintList(icon, mIconTintList);
}
TextViewCompat.setCompoundDrawablesRelative(mTextView, 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 (mItemData != null && mItemData.isCheckable() && mItemData.isChecked()) {
mergeDrawableStates(drawableState, CHECKED_STATE_SET);
}
return drawableState;
}
void setIconTintList(ColorStateList tintList) {
mIconTintList = tintList;
if (mItemData != null) {
// Update the icon so that the tint takes effect
setIcon(mItemData.getIcon());
}
}
public void setTextAppearance(Context context, int textAppearance) {
mTextView.setTextAppearance(context, textAppearance);
}
public void setTextColor(ColorStateList colors) {
mTextView.setTextColor(colors);
}
}