These two snipets give me the same results. i am wondering if thats only because my device runs on android 4.2.2 or if the support library is doing something which means users from 11+ will also see it in robotolight.
My question is, if i used the first example below, will users on api 13 for example, also see the roboto-light font?
android:fontFamily="sans-serif-light"
.
Typeface tf = Typeface.createFromAsset(
c.getAssets(), "Roboto-Light.ttf");
tv.setTypeface(tf);