ZXing Embedded центр горизонтальной подсказки - PullRequest
1 голос
/ 13 февраля 2020

Ну, были сомнения и нашли простое решение. Я поделюсь им ниже.
enter image description here

1 Ответ

0 голосов
/ 13 февраля 2020

Создать стиль:

<style name="ZxingTheme" parent="zxing_CaptureTheme">
    <item name="android:fontFamily">@font/open_sans</item>
    <item name="android:gravity">center_horizontal</item>
</style>

Переопределить в манифесте:

<activity
    android:name="com.journeyapps.barcodescanner.CaptureActivity"
    android:screenOrientation="portrait"
    android:theme="@style/ZxingTheme"
    tools:replace="screenOrientation, theme" />

Результат:
enter image description here

...