Jared Rummler

Results 11 issues of Jared Rummler

The method `onCreateView(View, String, AttributeSet)` was removed because it simply calls `onCreateView(String, AttributeSet)`. Removing the method ensures that `CalligraphyFactory#onViewCreated(View, Context, AttributeSet)` is only called once per view.

On my Moto X Pure on the stock ROM running Android 5.1.1 I am getting the following crash: ``` E/AndroidRuntime(16348): java.lang.NullPointerException: Attempt to invoke virtual method 'void android.support.v7.d.a.b (java.lang.CharSequence)' on...

The scrollY is off when items have vertical spacing. This fixes the scrollY jumping to incorrect values while scrolling. This will still be an issue on pre-JB. If you did...

## Edit: If I set the following for the default locale it works as expected: ``` java parser.setPreferredLocale(Locale.forLanguageTag("")); ``` Maybe you should have `Locale.forLanguageTag("")` be the default locale so it...

I was testing the port by @seven332 and the app crashes when attempting to open an APK. After a little searching, I found a similar problem here: http://stackoverflow.com/questions/26685491/jni-error-app-bug-local-reference-table-overflow-max-512 Hopefully this...

The Android 5.0 Toolbar adds extra padding, causing `TabBarView` to not match parent. ![lollipop-tbv](https://cloud.githubusercontent.com/assets/6203389/5585324/c5f60ab6-905c-11e4-9b39-7e48f3f6da45.png) Adding the following after calling `super(context, attrs, defStyle);` in `TabBarView` fixes the issue: ``` java setLayoutParams(new...

It would be great to have the "Controller" be able to input a whole string instead of just one word at a time. Example script I have used on Android...

It would be a nice feature to use a 'set' prefix instead of 'with'. Many builder patterns I've seen on Android use 'set'. Also, it would be nice to have...