Christopher Jenkins

Results 374 comments of Christopher Jenkins

@jlandrum `@string/myFontPath` will autoresolve, if not then that might be bug which is causing the issues you are seeing. I wonder if changing the activity theme breaks it as you...

Ahh OK, that is odd then. :/ On Thu, 9 Jul 2015 15:48 James Landrum [email protected] wrote: > Sorry, when I said "? and @" I meant that parts of...

Hey, your going to have to give me a bit more to work on then that. How have you applied it to your project? What do your styles look like?...

Code, implementation etc...

@nealsanche until google do sensible things like inflate layouts like they should be then it's very difficult to intercept anything like this, they do dirty things like creating TextViews pragmatically....

@dphillipsprosper MenuItems aren't handled at the moment regardless, I would need to look into how `NavigationView` is inflated, as I haven't looked yet.

@Don, yes the CalligraphyLayoutInflater will be passed to the View. The issue being that we apply the font at Inflation, setting the `setTextAppearance` after the view is inflated will have...

It might have a style applied to it though. In that case you can just override that style from the design library. On Fri, 4 Sep 2015 23:53 Don Phillips...

Well in theory if you override `TextAppearance.AppCompat.Body2` in your styles.xml. That will get picked up and applied to the View. (including the fontPath). On Tue, 8 Sep 2015 at 17:42...

So looks like `setTypeface` is enabled on the latest version of the design lib. This would still require a nasty work around tho to extract the correct Style for it....