Scott Alexander-Bown
Scott Alexander-Bown
I have custom font with calligraphy working a-ok with `` I wonder if there's an issue with `app:itemTextAppearance="@style/AppTheme.NavigationView"`? I am _not_ using that, instead `app:itemTextColor="@color/textColorBright"`. I've found with other android.support.design...
@ajdevries Sorry i wasn't clear. By using the default config. init CalligraphyConfig in Application object ``` java CalligraphyConfig.initDefault(new CalligraphyConfig.Builder() .setDefaultFontPath(getString(R.string.font_path_regular)) .setFontAttrId(R.attr.fontPath) .build()); ``` And attaching base context in activity ```...
+1 this confused me also (trying to implement Android version)
Hey @vishnoor, great work on creating a open source version to suit Java/Grails env. It would be great if you created a PR to add a new heading to the...
I'm seeing underline of the first word, for some reason, setting the inputType and setSingleLine(false) didn't work for me 🤔
To me this feels like a bug, as I understand it the whole point of `adatper.getItemText()` is to allow implementers to override and provide their own String based on the...
I had this when converting a project to use GoogleNavigationDrawer I'd left in a call to `setContentView(R.layout.activity_main);` on the main activity that extends GoogleNavigationDrawer.
I'm unable to get past the permissions issue with the `GrantPermissionRule`. I couldn't use the ` @ClassRule` as the compiler complained about it not being static 😞 ```kotlin @Rule @JvmField...
Thanks @malachid 👍 I'd forgotten the need for companion object. The below allows me to run Espresso tests from Android Studio. ```kotlin companion object { @ClassRule @JvmField val grantPermissionRule: GrantPermissionRule...