This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ContentValuesBuilder { | |
private ContentValues mValues; | |
private ContentValuesBuilder() { | |
mValues = new ContentValues(); | |
} | |
public static ContentValuesBuilder newBuilder() { | |
return new ContentValuesBuilder(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class UIUtils { | |
public static <T extends View> T findView(View root, int id) { | |
return (T) root.findViewById(id); | |
} | |
} |
NewerOlder