안 드 로 이 드 미 단 타 오 바 오 다단 계 드 롭 다운 목록 메뉴 기능 구현

우 리 는 자주 사용 하 는 전자상거래 나 관광 앱 에서 예 를 들 어 미 단,핸드폰 타 오 바 오 등 은 드 롭 다운 식 의 2 급 리스트 메뉴 를 볼 수 있다.구체 적 인 것 은 그림 과 같다.
위의 두 장의 그림 은 미 단의 2 급 리스트 메뉴 중 하나 입 니 다.나 는 많은 사람들 이 그것 과 같은 기능 을 개발 하여 자신의 앱 에 넣 고 싶 어 한다 고 믿는다.자,이제 우 리 는 그것 을 해결 하기 시작 합 니 다.
1.구조 분석
우선,우 리 는 이 드 롭 다운 메뉴 에 필요 한 구성 을 제시 합 니 다.우 리 는 선 그래프 로 분석한다.
1)위의 그림 에서 보 듯 이 가장 바깥쪽 에 있 는 것 은 Activity 입 니 다.상단 에 View 용 기 를 포함 하고 있 습 니 다.이 용 기 는 주로 ToggleButton 을 탑재 하여 미 단 안의'맛 있 는 음식,도시 전체,제 가 최근 에 선택 한 것'과 같은 줄 을 실현 합 니 다.이 줄 에 서 는 해당 하 는 아래 메뉴 가 팝 업 됩 니 다.
2)드 롭 다운 메뉴 는 어떻게 이 루어 집 니까?팝 업 윈도 우 를 이용 해 팝 업 창 을 만 들 었 습 니 다.그리고 팝 업 창 에서 다음 목록 항목 을 정의 합 니 다.단일 열 인지 2 급 메뉴 인지 모두 안에서 정 합 니 다.
3)서로 다른 메뉴 는 1 급 또는 2 급 이 필요 합 니 다.여기 서 제 수요 에 따라 달라 집 니 다.PopupWindow 에 사용자 정의 Left View 나 MiddleView,RightView 를 추가 합 니 다.주로 ToggleButton 입 니 다.창 을 꺼 내 면 창 을 맞 춥 니 다.
4)보기 에 ListView 를 삽입 하면 목록 항목 이 형 성 됩 니 다.
좋 은 분석 은 위 까지 이 고,이어서 우 리 는 한 걸음 한 걸음 설명 을 실현 한다.
2.프로젝트 구조
본 프로젝트 의 프로젝트 구 조 는 그림 과 같다.
1) Adapter。어댑터,주로 ListView 에 데이터 어댑터 를 제공 합 니 다.
2)MainActivity。주 활동 페이지.
3)ExpandTabView。이 항목 의 핵심 클래스 는 ToggleButton 용기 와 PopupWindow 를 포함 하여 팝 업 창 을 제어 하 는 핵심 클래스 입 니 다.
4)ViewLeft,ViewMiddle,ViewRight。팝 업 에 포 함 된 클래스 입 니 다.목록 메뉴 가 다 릅 니 다.
这里写图片描述  
3.MainActivity
모든 요 소 를 탑재 합 니 다.코드 를 보 는 것 이 글 자 를 보 는 것 보다 진실 하 다.

package com.example.expandtabview; 
import java.util.ArrayList; 
import Android.app.Activity; 
import android.os.Bundle; 
import android.util.Log; 
import android.view.View; 
import android.widget.Toast; 
import com.example.view.ExpandTabView; 
import com.example.view.ViewLeft; 
import com.example.view.ViewMiddle; 
import com.example.view.ViewRight; 
public class MainActivity extends Activity { 
  private static final String TAG = "MainActivity"; 
  private ExpandTabView expandTabView; 
  private ArrayList mViewArray = new ArrayList(); 
  private ViewLeft viewLeft; 
  private ViewMiddle viewMiddle; 
  private ViewRight viewRight; 
  @Override 
  protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main); 
    initView(); 
    initVaule(); 
    initListener(); 
  } 
  private void initView() { 
    Log.d(TAG,"initView"); 
    expandTabView = (ExpandTabView) findViewById(R.id.expandtab_view); 
    viewLeft = new ViewLeft(this); 
    viewMiddle = new ViewMiddle(this); 
    viewRight = new ViewRight(this); 
  } 
  private void initVaule() { 
    Log.d(TAG,"initValue"); 
    mViewArray.add(viewLeft); 
    mViewArray.add(viewMiddle); 
    mViewArray.add(viewRight); 
    ArrayList mTextArray = new ArrayList(); 
    mTextArray.add("  "); 
    mTextArray.add("  "); 
    mTextArray.add("  "); 
    expandTabView.setValue(mTextArray, mViewArray);//            
    expandTabView.setTitle(viewLeft.getShowText(), 0); 
    expandTabView.setTitle(viewMiddle.getShowText(), 1); 
    expandTabView.setTitle(viewRight.getShowText(), 2); 
  } 
  private void initListener() { 
    Log.d(TAG,"initListener"); 
    viewLeft.setOnSelectListener(new ViewLeft.OnSelectListener() { 
      @Override 
      public void getValue(String distance, String showText) { 
        Log.d("ViewLeft", "OnSelectListener, getValue"); 
        onRefresh(viewLeft, showText); 
      } 
    }); 
    viewMiddle.setOnSelectListener(new ViewMiddle.OnSelectListener() { 
      @Override 
      public void getValue(String showText) { 
        Log.d("ViewMiddle","OnSelectListener, getValue"); 
        onRefresh(viewMiddle,showText); 
      } 
    }); 
    viewRight.setOnSelectListener(new ViewRight.OnSelectListener() { 
      @Override 
      public void getValue(String distance, String showText) { 
        Log.d("ViewRight","OnSelectListener, getValue"); 
        onRefresh(viewRight, showText); 
      } 
    }); 
  } 
  private void onRefresh(View view, String showText) { 
    Log.d(TAG,"onRefresh,view:"+view+",showText:"+showText); 
    expandTabView.onPressBack(); 
    int position = getPositon(view); 
    if (position >= 0 && !expandTabView.getTitle(position).equals(showText)) { 
      expandTabView.setTitle(showText, position); 
    } 
    Toast.makeText(MainActivity.this, showText, Toast.LENGTH_SHORT).show(); 
  } 
  private int getPositon(View tView) { 
    Log.d(TAG,"getPosition"); 
    for (int i = 0; i < mViewArray.size(); i++) { 
      if (mViewArray.get(i) == tView) { 
        return i; 
      } 
    } 
    return -1; 
  } 
  @Override 
  public void onBackPressed() { 
    if (!expandTabView.onPressBack()) { 
      finish(); 
    } 
  } 
} 
4 .ExpandTabView
가장 중요 한 것 은 이 Toggle Button 을 클릭 할 때 팝 업 창 을 꺼 내 거나 꺼 내 는 것 입 니 다.

package com.example.view; 
import java.util.ArrayList; 
import com.example.expandtabview.R; 
import android.app.Activity; 
import android.content.Context; 
import android.util.AttributeSet; 
import android.util.Log; 
import android.view.LayoutInflater; 
import android.view.View; 
import android.widget.LinearLayout; 
import android.widget.PopupWindow; 
import android.widget.PopupWindow.OnDismissListener; 
import android.widget.RelativeLayout; 
import android.widget.TextView; 
import android.widget.ToggleButton; 
/** 
 *       ,       ,           
 * 
 * @author zengjinlong 
 */ 
public class ExpandTabView extends LinearLayout implements OnDismissListener { 
  private static final String TAG = "ExpandTabView"; 
  private ToggleButton selectedButton; 
  private ArrayList mTextArray = new ArrayList(); 
  private ArrayList mViewArray = new ArrayList(); 
  private ArrayList mToggleButton = new ArrayList(); 
  private Context mContext; 
  private final int SMALL = 0; 
  private int displayWidth; 
  private int displayHeight; 
  private PopupWindow popupWindow; 
  private int selectPosition; 
  public ExpandTabView(Context context) { 
    super(context); 
    init(context); 
  } 
  public ExpandTabView(Context context, AttributeSet attrs) { 
    super(context, attrs); 
    init(context); 
  } 
  /** 
   *          tabitem     
   */ 
  public void setTitle(String valueText, int position) { 
    if (position < mToggleButton.size()) { 
      mToggleButton.get(position).setText(valueText); 
    } 
  } 
  public void setTitle(String title){ 
  } 
  /** 
   *          tabitem     
   */ 
  public String getTitle(int position) { 
    if (position < mToggleButton.size() && mToggleButton.get(position).getText() != null) { 
      return mToggleButton.get(position).getText().toString(); 
    } 
    return ""; 
  } 
  /** 
   *   tabitem        
   * @param textArray      
   * @param viewArray      
   */ 
  public void setValue(ArrayList textArray, ArrayList viewArray) { 
    if (mContext == null) { 
      return; 
    } 
    LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE); 
    Log.d(TAG,"setValue"); 
    mTextArray = textArray; 
    for (int i = 0; i < viewArray.size(); i++) { 
      final RelativeLayout r = new RelativeLayout(mContext); 
      int maxHeight = (int) (displayHeight * 0.7); 
      RelativeLayout.LayoutParams rl = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.MATCH_PARENT, maxHeight); 
      rl.leftMargin = 10; 
      rl.rightMargin = 10; 
      r.addView(viewArray.get(i), rl); 
      mViewArray.add(r); 
      r.setTag(SMALL); 
      ToggleButton tButton = (ToggleButton) inflater.inflate(R.layout.toggle_button, this, false); 
      addView(tButton); 
      View line = new TextView(mContext); 
      line.setBackgroundResource(R.drawable.choosebar_line); 
      if (i < viewArray.size() - 1) { 
        LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(2, LinearLayout.LayoutParams.MATCH_PARENT); 
        addView(line, lp); 
      } 
      mToggleButton.add(tButton); 
      tButton.setTag(i); 
      tButton.setText(mTextArray.get(i)); 
      r.setOnClickListener(new OnClickListener() { 
        @Override 
        public void onClick(View v) { 
          Log.d("RelativeLayout","view:"+v); 
          onPressBack(); 
        } 
      }); 
      r.setBackgroundColor(mContext.getResources().getColor(R.color.popup_main_background)); 
      tButton.setOnClickListener(new OnClickListener() { 
        @Override 
        public void onClick(View view) { 
          Log.d("tButton","setOnClickListener(l)"); 
          // initPopupWindow(); 
          ToggleButton tButton = (ToggleButton) view; 
          if (selectedButton != null && selectedButton != tButton) { 
            selectedButton.setChecked(false); 
          } 
          selectedButton = tButton; 
          selectPosition = (Integer) selectedButton.getTag(); 
          startAnimation(); 
          if (mOnButtonClickListener != null && tButton.isChecked()) { 
            mOnButtonClickListener.onClick(selectPosition); 
          } 
        } 
      }); 
    }// for.. 
  } 
  private void startAnimation() { 
    Log.d(TAG,"startAnimation"); 
    if (popupWindow == null) { 
      Log.d(TAG,"startAnimation(),new popupWindow now"); 
      popupWindow = new PopupWindow(mViewArray.get(selectPosition), displayWidth, displayHeight); 
      popupWindow.setAnimationStyle(R.style.PopupWindowAnimation); 
      popupWindow.setFocusable(false); 
      popupWindow.setOutsideTouchable(true); 
    } 
    Log.d(TAG,"startAnimation(),selectedButton:"+selectedButton+",isChecked:"+selectedButton.isChecked()+ 
        ",popupWindow.isShowing:"+popupWindow.isShowing()); 
    if (selectedButton.isChecked()) { 
      if (!popupWindow.isShowing()) { 
        showPopup(selectPosition); 
      } else { 
        popupWindow.setOnDismissListener(this); 
        popupWindow.dismiss(); 
        hideView(); 
      } 
    } else { 
      if (popupWindow.isShowing()) { 
        popupWindow.dismiss(); 
        hideView(); 
      } 
    } 
  } 
  private void showPopup(int position) { 
    View tView = mViewArray.get(selectPosition).getChildAt(0); 
    if (tView instanceof ViewBaseAction) { 
      ViewBaseAction f = (ViewBaseAction) tView; 
      f.show(); 
    } 
    if (popupWindow.getContentView() != mViewArray.get(position)) { 
      popupWindow.setContentView(mViewArray.get(position)); 
    } 
    popupWindow.showAsDropDown(this, 0, 0); 
  } 
  /** 
   *          ,        
   */ 
  public boolean onPressBack() { 
    Log.d(TAG,"onPressBack"); 
    if (popupWindow != null && popupWindow.isShowing()) { 
      popupWindow.dismiss(); 
      hideView(); 
      if (selectedButton != null) { 
        selectedButton.setChecked(false); 
      } 
      return true; 
    } else { 
      return false; 
    } 
  } 
  private void hideView() { 
    Log.d(TAG, "hide()"); 
    View tView = mViewArray.get(selectPosition).getChildAt(0); 
    if (tView instanceof ViewBaseAction) { 
      ViewBaseAction f = (ViewBaseAction) tView; 
      f.hide(); 
    } 
  } 
  private void init(Context context) { 
    mContext = context; 
    displayWidth = ((Activity) mContext).getWindowManager().getDefaultDisplay().getWidth(); 
    displayHeight = ((Activity) mContext).getWindowManager().getDefaultDisplay().getHeight(); 
    setOrientation(LinearLayout.HORIZONTAL); 
  } 
  @Override 
  public void onDismiss() { 
    Log.d(TAG,"onDismiss,selectPosition:"+selectPosition); 
    showPopup(selectPosition); 
    popupWindow.setOnDismissListener(null); 
  } 
  private OnButtonClickListener mOnButtonClickListener; 
  /** 
   *   tabitem        
   */ 
  public void setOnButtonClickListener(OnButtonClickListener l) { 
    mOnButtonClickListener = l; 
  } 
  /** 
   *    tabitem       
   */ 
  public interface OnButtonClickListener { 
    public void onClick(int selectPosition); 
  } 
} 
5.ViewLeft
그 중의 한 예 는 다른 두 개 는 열거 하지 않 는 다.

package com.example.view; 
import com.example.adapter.TextAdapter; 
import com.example.expandtabview.R; 
import android.content.Context; 
import android.util.AttributeSet; 
import android.view.LayoutInflater; 
import android.view.View; 
import android.widget.ListView; 
import android.widget.RelativeLayout; 
import android.widget.Toast; 
public class ViewLeft extends RelativeLayout implements ViewBaseAction{ 
  private static final String TAG = "ViewLeft"; 
  private ListView mListView; 
  private final String[] items = new String[] { "item1", "item2", "item3", "item4", "item5", "item6" };//     
  private final String[] itemsVaule = new String[] { "1", "2", "3", "4", "5", "6" };//  id 
  private OnSelectListener mOnSelectListener; 
  private TextAdapter adapter; 
  private String mDistance; 
  private String showText = "item1"; 
  private Context mContext; 
  public String getShowText() { 
    return showText; 
  } 
  public ViewLeft(Context context) { 
    super(context); 
    init(context); 
  } 
  public ViewLeft(Context context, AttributeSet attrs, int defStyle) { 
    super(context, attrs, defStyle); 
    init(context); 
  } 
  public ViewLeft(Context context, AttributeSet attrs) { 
    super(context, attrs); 
    init(context); 
  } 
  private void init(Context context) { 
    mContext = context; 
    LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); 
    inflater.inflate(R.layout.view_distance, this, true); 
    setBackgroundDrawable(getResources().getDrawable(R.drawable.choosearea_bg_mid)); 
    mListView = (ListView) findViewById(R.id.listView); 
    adapter = new TextAdapter(context, items, R.drawable.choose_item_right, R.drawable.choose_eara_item_selector); 
    adapter.setTextSize(17); 
    if (mDistance != null) { 
      for (int i = 0; i < itemsVaule.length; i++) { 
        if (itemsVaule[i].equals(mDistance)) { 
          adapter.setSelectedPositionNoNotify(i); 
          showText = items[i]; 
          break; 
        } 
      } 
    } 
    mListView.setAdapter(adapter); 
    adapter.setOnItemClickListener(new TextAdapter.OnItemClickListener() { 
      @Override 
      public void onItemClick(View view, int position) { 
        if (mOnSelectListener != null) { 
          showText = items[position]; 
          mOnSelectListener.getValue(itemsVaule[position], items[position]); 
        } 
      } 
    }); 
  } 
  public void setOnSelectListener(OnSelectListener onSelectListener) { 
    mOnSelectListener = onSelectListener; 
  } 
  public interface OnSelectListener { 
    public void getValue(String distance, String showText); 
  } 
  @Override 
  public void hide() { 
  } 
  @Override 
  public void show() { 
  } 
} 
6.효과 도
这里写图片描述  
这里写图片描述
위 에서 말 한 것 은 소 편 이 소개 한 안 드 로 이 드 모방 미 단 타 오 바 오 가 다단 계 드 롭 다운 목록 메뉴 기능 을 실현 하고 여러 가지 목적 의 인 스 턴 스 코드 입 니 다.여러분 에 게 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 저 에 게 메 시 지 를 남 겨 주세요.소 편 은 제때에 답 해 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기