DropDownMenu
DropDownMenu copied to clipboard
个人建议,用户可以按标签编号修改tab文字
/**
* 改变tab文字
*
*/
public void setTabText(int position, String text) {
if (null != tabMenuView.getChildAt(position * 2) && tabMenuView.getChildAt(position * 2) instanceof TextView) {
((TextView) tabMenuView.getChildAt(position * 2)).setText(text);
}
}