dongjunkun / DropDownMenu

一个实用的多条件筛选菜单
3.59k stars 787 forks source link

setTabText增加position参数 #33

Open douzixiongzai opened 7 years ago

douzixiongzai commented 7 years ago

多级联动菜单时,需要根据当前展开的菜单,动态改变第二个菜单,这时就需要重置由之前setTabText函数设置的文本值。目前没有指定位置参数,无法改变。

`public void setTabText(String text, int pos) { if(pos != -1) { ((TextView)this.tabMenuView.getChildAt(pos)).setText(text); }

}

public void setTabText(String text) { setTabText(text, this.current_tab_position); }

`