在 Android 7 上实施 androidx 生物识别库后字体缩放不起作用
Font scaling doesn't work after implementing androidx biometric library on Android 7
在使用 Android 的设备上从 androidx 实现生物识别库后,我的应用程序出现问题 7。在 phone 中更改字体大小时,我的主应用程序开始出现问题的辅助功能设置和应用程序中的文本大小没有改变。查明问题后,我创建了一个带有单个 "hello world" activity 的虚拟应用程序,我发现即使仅通过在 app.gradle 中声明库的依赖项也会重现该错误。
这是 activity 的 xml:
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textSize="16sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
这是 build.gradle:
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.fontscaletestapplication"
minSdkVersion 23
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation "androidx.biometric:biometric:1.0.1"
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.core:core-ktx:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}
值得一提的是,如果我删除对 androidx biometric 的依赖,字体缩放工作没有任何问题,但是一旦我添加依赖,更改字体大小对字体大小没有影响应用程序。
从我在主应用程序中注意到的情况来看,我认为它与应用程序上下文和应用程序资源有关,但我无法弄清楚问题是什么。我已经在 Android 7 的 HTC 10 和 API 24 的模拟器上进行了测试。另一件值得一提的事情是字体缩放适用于 Android 9 和 10。
有什么我想念的吗?
谢谢。
由https://issuetracker.google.com/issues/140607881
引起
根据漏洞:
"All version before API 26 are affected, Android 8.0 is the first version where is possible to change font size globally with app compat 1.1.0"
"Fixed in latest AppCompat 1.2.0-alpha02"
我测试了最新的 1.2.0-beta01 并且修复有效。以下是 appcomat https://developer.android.com/jetpack/androidx/releases/appcompat.
的所有版本
在使用 Android 的设备上从 androidx 实现生物识别库后,我的应用程序出现问题 7。在 phone 中更改字体大小时,我的主应用程序开始出现问题的辅助功能设置和应用程序中的文本大小没有改变。查明问题后,我创建了一个带有单个 "hello world" activity 的虚拟应用程序,我发现即使仅通过在 app.gradle 中声明库的依赖项也会重现该错误。 这是 activity 的 xml:
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textSize="16sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
这是 build.gradle:
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.fontscaletestapplication"
minSdkVersion 23
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation "androidx.biometric:biometric:1.0.1"
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.core:core-ktx:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}
值得一提的是,如果我删除对 androidx biometric 的依赖,字体缩放工作没有任何问题,但是一旦我添加依赖,更改字体大小对字体大小没有影响应用程序。
从我在主应用程序中注意到的情况来看,我认为它与应用程序上下文和应用程序资源有关,但我无法弄清楚问题是什么。我已经在 Android 7 的 HTC 10 和 API 24 的模拟器上进行了测试。另一件值得一提的事情是字体缩放适用于 Android 9 和 10。
有什么我想念的吗?
谢谢。
由https://issuetracker.google.com/issues/140607881
引起根据漏洞: "All version before API 26 are affected, Android 8.0 is the first version where is possible to change font size globally with app compat 1.1.0"
"Fixed in latest AppCompat 1.2.0-alpha02"
我测试了最新的 1.2.0-beta01 并且修复有效。以下是 appcomat https://developer.android.com/jetpack/androidx/releases/appcompat.
的所有版本