DropDownMenu icon indicating copy to clipboard operation
DropDownMenu copied to clipboard

个人建议,用户可以按标签编号修改tab文字

Open yongchao1210 opened this issue 7 years ago • 0 comments

/**
 * 改变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);
    }
}

yongchao1210 avatar Oct 24 '17 10:10 yongchao1210