You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public DrawableIndicator(Context context, @DrawableRes int normalResId, @DrawableRes int selectedResId) {
super(context);
//修复Drawable指示器显示半透明的问题
mPaint = new Paint();
mPaint.setAntiAlias(true);
DrawableIndicator 添加的图片显示始终为半透明,能否优化此问题,或者增加设置半透明的参数
The text was updated successfully, but these errors were encountered: