/**
* 设置view的权重,总权重数为1 ,weightWidth范围(0.0f-1.0f)
* */
public void setWeightWidth(@FloatRange(from = 0, to = 1)float weightWidth) {
if(weightWidth<0){
weightWidth = 0;
}
if(!TextUtils.isEmpty(label)){
if(weightWidth>=1){
weightWidth = 0.5f;
}
}
this.weightWidth = weightWidth;
}
SinglePicker.java 文件源码
java
阅读 43
收藏 0
点赞 0
评论 0
项目:GitHub
作者:
评论列表
文章目录