Skip to content

Android 9 does not render text #41

Description

@jerome2710

While devices running Android 8 show text in my app properly, all my views are 'empty' when using a device with Android 9.

The Layout Inspector of Android Studio does show the contents under "Text" -> "mText", but not visually in the view. No errors were triggered.

build.gradle:

implementation 'io.github.inflationx:calligraphy3:3.1.1'
implementation 'io.github.inflationx:viewpump:2.0.3'

AndroidManifest.xml application:

android:name=".App"

App.java:

public class App extends Application {
    ...

    @Override
    public void onCreate() {
        ...

        ViewPump.init(ViewPump.builder()
            .addInterceptor(new CalligraphyInterceptor(
                new CalligraphyConfig.Builder()
                    .setDefaultFontPath("fonts/Rubik-Regular.ttf")
                    .setFontAttrId(R.attr.fontPath)
                    .build()))
            .build());

        ...
    }
}

Activity.java:

@Override
protected void attachBaseContext(Context newBase) {
    super.attachBaseContext(
        ViewPumpContextWrapper.wrap(
                LokaliseContextWrapper.wrap(newBase)
        )
    );
}

And then, all my views containing texts are empty on Android 9.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions