标签: android kotlin annotations androidx
我想注释我的变量
@IntRange(from=1L) @IntRange(to=-1L) resId: Int
这意味着它不会为“ 0”。 因为resID <=-1和resID> = 1
除了@IntRange以外,是否还有其他适当的注释?
例如,
@IntRange(exclude=0L)