用来替代findviewById方法
import android.util.SparseArray;
import android.view.View;
@SuppressWarnings({"unchecked"})
public class ViewFindUtils {
/**
* 替代findviewById方法
*/
public static <T extends View> T find(View view, int id) {
return (T) view.findViewById(id);
}
}
好处就是,使用时免去了强制类型转换:
View view = LayoutInflater.from(getContext()).inflate(R.layout.v_remark_normal, null);
ImageView iv_r_love = ViewFindUtil.find(view,R.id.iv_r_love);
网友评论