Android 사용자 정의 컨트롤 아래쪽 메뉴 구현(아래)

14779 단어 Android하단 메뉴
app 에 서 는 마지막 메뉴 의 컨트롤 을 자주 사용 합 니 다.매번 코드 를 많이 써 야 합 니 다.오늘 우 리 는 앞의 블 로그 의 컨트롤 을 사용 하여 아래쪽 메뉴 를 더 밀봉 합 니 다.효과 그림 먼저 보기:

주로 다음 과 같은 기능 을 포함한다.
1 아이콘 설정 및 클릭 한 아이콘
2 텍스트 설정
3 텍스트 색상 설정 및 클릭 한 텍스트 색상 설정
4 읽 지 않 은 수량,더 많은 것,new 설정
우 리 는 먼저 어떻게 사용 하 는 지 를 본 후에 어떻게 실현 하 는 지 를 보 았 다.
1 레이아웃 파일 에서 MenuM 참조

<com.landptf.view.MenuM
  android:id="@+id/mm_bottom"
  android:layout_width="match_parent"
  android:layout_height="56dp"
  android:layout_alignParentBottom="true"
  landptf:backColor="@color/content"
  landptf:textColor="@color/text"
  landptf:textColorPress="@color/colorPrimary"
  landptf:count="4"
  />
메뉴 항목 의 개 수 를 나타 내 는 count 속성 을 말 합 니 다.
2 Activity 에서 초기 화

final MenuM mmBottom = (MenuM) findViewById(R.id.mm_bottom);
mmBottom.setText(text);
mmBottom.setIconDrawable(iconDrawable);
mmBottom.setIconDrawablePress(iconDrawablePress);
//         
mmBottom.setPressState(0, MotionEvent.ACTION_DOWN);
mmBottom.setOnItemClickListener(new MenuM.OnItemClickListener() {
  @Override
  public void onItemClick(int position) {
    Toast.makeText(MenuMTestActivity.this, mmBottom.getText(position), Toast.LENGTH_SHORT).show();
  }
});

mmBottom.setUnReadCount(0, 100);
mmBottom.setUnReadCount(1, 15);
mmBottom.setVisibilityMore(2, View.VISIBLE);
mmBottom.setVisibilityNew(3, View.VISIBLE);

다음 과 같은 전역 변수 가 있 습 니 다.

text = new String[]{"  ", "   ", "  ", " "};
//            icon,                ,     
Drawable drawable = getResources().getDrawable(R.drawable.icon_home_page);
Drawable drawablePress = getResources().getDrawable(R.drawable.icon_home_page_press);
iconDrawable = new Drawable[]{drawable, drawable, drawable, drawable};
iconDrawablePress = new Drawable[]{drawablePress, drawablePress, drawablePress, drawablePress};
이상 은 모든 코드 입 니 다.편리 하 시 죠!!
이제 어떻게 이 루어 졌 는 지 알 아 보 겠 습 니 다.
1.style 에서 몇 가지 속성 을 정의 하면 여기에 붙 이지 않 습 니 다.여러분 은 소스 코드 를 볼 수 있 습 니 다.본 논문 의 마지막 에 모든 소스 코드 의 다운로드 주 소 를 드 립 니 다.
2 MenuM.java

package com.landptf.view;

import android.content.Context;
import android.content.res.ColorStateList;
import android.content.res.TypedArray;
import android.graphics.drawable.Drawable;
import android.support.annotation.Nullable;
import android.util.AttributeSet;
import android.util.Log;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewGroup;
import android.widget.LinearLayout;
import android.widget.RelativeLayout;

import com.landptf.R;

import java.util.ArrayList;
import java.util.List;

/**
 * Created by landptf on 2017/01/15.
 *   ,         ,          
 */
public class MenuM extends LinearLayout {
  private static final String TAG = MenuM.class.getSimpleName();

  private Context mContext;
  private List<MenuItemM> menuList;
  private List<RelativeLayout> rlList;
  private OnItemClickListener mOnItemClickListener;
  private int count = 0;

  public MenuM(Context context) {
    this(context, null, 0);
  }

  public MenuM(Context context, AttributeSet attrs) {
    this(context, attrs, 0);
  }

  public MenuM(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
    mContext = context;
    init(attrs, defStyle);
  }

  private void init(AttributeSet attrs, int defStyle) {
    setOrientation(LinearLayout.HORIZONTAL);
    TypedArray a = mContext.obtainStyledAttributes(attrs, R.styleable.menuM, defStyle, 0);
    if (a != null) {
      //       
      count = a.getInteger(R.styleable.menuM_count, 0);
      if (count > 0) {
        initControl();
      }
      //     
      ColorStateList colorList = a.getColorStateList(R.styleable.menuM_backColor);
      if (colorList != null) {
        int backColor = colorList.getColorForState(getDrawableState(), 0);
        if (backColor != 0) {
          setBackColor(backColor);
        }
      }
      //       
      ColorStateList textColorList = a.getColorStateList(R.styleable.menuM_textColor);
      if (textColorList != null) {
        int textColor = textColorList.getColorForState(getDrawableState(), 0);
        if (textColor != 0) {
          setTextColor(textColor);
        }
      }
      //  View         
      ColorStateList textColorPressList = a.getColorStateList(R.styleable.menuM_textColorPress);
      if (textColorPressList != null) {
        int textColorPress = textColorPressList.getColorForState(getDrawableState(), 0);
        if (textColorPress != 0) {
          setTextColorPress(textColorPress);
        }
      }
      //        
      float textSize = a.getFloat(R.styleable.menuM_textSize, 0);
      if (textSize != 0) {
        setTextSize(textSize);
      }
      a.recycle();
    }
  }

  /**
   *   MenuItemM  ButtonExtendM    ,             
   *    MenuItemM      RelativeLayout,             
   */
  private void initControl() {
    rlList = new ArrayList<>(count);
    menuList = new ArrayList<>(count);
    for (int i = 0; i < count; i++) {
      RelativeLayout rlPanel = new RelativeLayout(mContext);
      LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(0, ViewGroup.LayoutParams.MATCH_PARENT);
      lp.weight = 1;
      rlPanel.setLayoutParams(lp);
      final MenuItemM menuItem = new MenuItemM(mContext);
      RelativeLayout.LayoutParams lpR = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
      lpR.addRule(RelativeLayout.CENTER_IN_PARENT);
      menuItem.setLayoutParams(lpR);
      menuItem.setOnClickListener(new MenuItemM.OnClickListener() {
        @Override
        public void onClick(View v) {
          //      view  position
          MenuM.this.onClick(getPosition(menuItem));
        }
      });
      rlPanel.addView(menuItem);
      menuList.add(menuItem);
      rlList.add(rlPanel);
      addView(rlPanel);
    }
  }

  /**
   *   View    
   *
   * @param backColor
   */
  public void setBackColor(int backColor) {
    if (backColor == 0) return;
    if (!checkCount()) {
      return;
    }
    for (RelativeLayout item : rlList) {
      item.setBackgroundColor(backColor);
    }
    for (MenuItemM item : menuList) {
      item.setBackColor(backColor);
    }
  }

  /**
   *        
   *
   * @param textColor
   */
  public void setTextColor(int textColor) {
    if (textColor == 0) return;
    if (!checkCount()) {
      return;
    }
    for (MenuItemM item : menuList) {
      item.setTextColor(textColor);
    }
  }

  /**
   *   View         
   *
   * @param textColorPress
   */
  public void setTextColorPress(int textColorPress) {
    if (textColorPress == 0) return;
    if (!checkCount()) {
      return;
    }
    for (MenuItemM item : menuList) {
      item.setTextColorPress(textColorPress);
    }
  }

  /**
   *   icon   
   *
   * @param iconDrawable
   */
  public void setIconDrawable(Drawable[] iconDrawable) {
    if (count != iconDrawable.length) {
      Log.e(TAG, "the iconDrawable length do not equals count");
      return;
    }
    for (int i = 0; i < count; i++) {
      if (iconDrawable[i] != null) {
        menuList.get(i).setIconDrawable(iconDrawable[i]);
      }
    }
  }

  /**
   *   icon   
   *
   * @param iconDrawable
   */
  public void setIconDrawable(List<Drawable> iconDrawable) {
    if (count != iconDrawable.size()) {
      Log.e(TAG, "the iconDrawable length do not equals count");
      return;
    }
    for (int i = 0; i < count; i++) {
      if (iconDrawable.get(i) != null) {
        menuList.get(i).setIconDrawable(iconDrawable.get(i));
      }
    }
  }

  /**
   *   View     icon   
   *
   * @param iconDrawablePress
   */
  public void setIconDrawablePress(Drawable[] iconDrawablePress) {
    if (count != iconDrawablePress.length) {
      Log.e(TAG, "the iconDrawablePress length do not equals count");
      return;
    }
    for (int i = 0; i < count; i++) {
      if (iconDrawablePress[i] != null) {
        menuList.get(i).setIconDrawablePress(iconDrawablePress[i]);
      }
    }
  }

  /**
   *   View     icon   
   *
   * @param iconDrawablePress
   */
  public void setIconDrawablePress(List<Drawable> iconDrawablePress) {
    if (count != iconDrawablePress.size()) {
      Log.e(TAG, "the iconDrawablePress length do not equals count");
      return;
    }
    for (int i = 0; i < count; i++) {
      if (iconDrawablePress.get(i) != null) {
        menuList.get(i).setIconDrawablePress(iconDrawablePress.get(i));
      }
    }
  }

  /**
   *          
   *
   * @param text
   */
  public void setText(CharSequence[] text) {
    for (int i = 0; i < count; i++) {
      menuList.get(i).setText(text[i]);
    }
  }

  /**
   *          
   *
   * @param text
   */
  public void setText(List<CharSequence> text) {
    if (count != text.size()) {
      Log.e(TAG, "the text length do not equals count");
      return;
    }
    for (int i = 0; i < count; i++) {
      menuList.get(i).setText(text.get(i));
    }
  }

  /**
   *        
   *
   * @return
   */
  public String getText(int index) {
    if (!checkIndex(index)) {
      return "";
    }
    return menuList.get(index).getText();
  }

  /**
   *         
   *
   * @param size
   */
  public void setTextSize(float size) {
    if (!checkCount()) {
      return;
    }
    for (MenuItemM item : menuList) {
      item.setTextSize(size);
    }
  }

  /**
   *           
   *         new       
   *
   * @param visibleMore
   */
  public void setVisibilityMore(int index, int visibleMore) {
    if (!checkIndex(index)) {
      return;
    }
    menuList.get(index).setVisibilityMore(visibleMore);
  }

  /**
   *   New      
   *                  
   *
   * @param visibleNew
   */
  public void setVisibilityNew(int index, int visibleNew) {
    if (!checkIndex(index)) {
      return;
    }
    menuList.get(index).setVisibilityNew(visibleNew);
  }

  /**
   *       
   *       0,    
   *     99,     ,         
   *    0-99  ,      new  
   *
   * @param unReadCount
   */
  public void setUnReadCount(int index, int unReadCount) {
    if (!checkIndex(index)) {
      return;
    }
    menuList.get(index).setUnReadCount(unReadCount);
  }

  /**
   *         
   *
   * @param index
   * @param state in MotionEvent.ACTION_DOWN or MotionEvent.ACTION_UP
   */
  public void setPressState(int index, int state) {
    if (!checkIndex(index)) {
      return;
    }
    menuList.get(index).setPressState(state);
  }

  /**
   *         
   *
   * @param listener
   */
  public void setOnItemClickListener(@Nullable OnItemClickListener listener) {
    mOnItemClickListener = listener;
  }

  private void onClick(int position) {
    for (int i = 0; i < count; i++) {
      if (i == position) {
        setPressState(i, MotionEvent.ACTION_DOWN);
      } else {
        setPressState(i, MotionEvent.ACTION_UP);
      }
    }
    mOnItemClickListener.onItemClick(position);
  }

  /**
   *           
   * @param item
   * @return
   */
  private int getPosition(MenuItemM item) {
    for (int i = 0; i < count; i++) {
      if (item == menuList.get(i)) {
        return i;
      }
    }
    return -1;
  }

  /**
   *        Count  
   *
   * @return
   */
  private boolean checkCount() {
    if (count == 0) {
      Log.e(TAG, "You must set the count first");
      return false;
    }
    return true;
  }

  /**
   *           
   *
   * @param index
   * @return
   */
  private boolean checkIndex(int index) {
    if (!checkCount()) {
      return false;
    }
    if (index < 0 || index >= count) {
      Log.e(TAG, "the index is wrong");
      return false;
    }
    return true;
  }

  public interface OnItemClickListener {
    void onItemClick(int position);
  }
}


코드 가 간단 합 니 다.한 번 보면 이해 할 수 있 을 거 라 고 믿 습 니 다.이 안 에는 MenuItemM 사용자 정의 컨트롤 이 사용 되 어 있 습 니 다.모 르 는 것 은 이전 블 로그https://www.jb51.net/article/103913.htm를 참고 하거나 소스 코드 를 볼 수 있 습 니 다.
모든 코드 는 오픈 소스 중국의 코드 클 라 우 드 에 위탁 되 었 습 니 다.다운로드 환영 합 니 다.주소:https://git.oschina.net/landptf/landptf.git
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기