在Android中最头痛的就是不停的findById需要不停的进行类型转换,那么怎么实现在findById的时候直接设置转换后的类型呢?
1 首先想到的就是使用泛型函数实现
代码语言:javascript复制public <T extends View> T findViewById(int resId){
return (T)itemView.findViewById(resId);
}
然后我们想,怎么给定一个这个函数再添加个参数来限定返回类型呢?
代码语言:javascript复制public <T extends View> T dingViewById(int resId, Class<T> cla ){
return cla.cast(itemView.findViewById(resId));
}另一种实现
public <T extends View> T findViewById(int resId, Class<? extends T> cla) {
return cla.cast(itemView.findViewById(resId));
}
我们看看怎么使用
代码语言:javascript复制dingViewById(R.id.holder_desc,TextView.class).setText();
当然了这个在Java中就是个鸡肋,但是到了Kotlin就十分有用,因为Java没有扩展而Kotlin使用extension的我们可以直接给Activity/View添加扩展函数实现即可方便的实现findViewById的时候设置限定转换的类型,这样我们就可以避免掉重复的类型转换工作啦