Skip to content

Instantly share code, notes, and snippets.

@Krylez-zz
Krylez-zz / ContentValuesBuilder.java
Last active December 17, 2015 21:39
ContentValuesBuilder.java
public class ContentValuesBuilder {
private ContentValues mValues;
private ContentValuesBuilder() {
mValues = new ContentValues();
}
public static ContentValuesBuilder newBuilder() {
return new ContentValuesBuilder();
}
@Krylez-zz
Krylez-zz / UIUtils.java
Last active December 17, 2015 17:59
Better than findViewById
public class UIUtils {
public static <T extends View> T findView(View root, int id) {
return (T) root.findViewById(id);
}
}