应用程序文本大小未按系统字体大小缩放

时间:2017-05-03 15:15:10

标签: android fonts sp scale-independent

我必须处理现有的Android应用程序,其中所有文本都在SP单元的布局XML文件中提及。

但是,应用程序的文本大小不会随系统字体一起调整。即,如果我从Settings -> Accessibility -> Font Size更改系统字体大小,应用程序的字体大小根本不会改变。

PFB摘自我的布局文件,其中提到了TextView's textSize

<LinearLayout
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:gravity="center"
    android:orientation="vertical"
    android:padding="12dp">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="8dp"
        android:gravity="center"
        android:text="@string/find_an_noffice"
        android:textSize="12sp"/>
</LinearLayout>

我认为这个问题与布局结构无关,因此我在示例应用程序中使用了相同的布局文件。此示例应用程序正在按预期工作。即,使用系统字体调整应用程序的字体大小。

我的原始应用程序不像示例应用程序那样有什么可能性?

任何帮助都将不胜感激。

1 个答案:

答案 0 :(得分:1)

我找到了问题的根本原因。我的应用正在创建一个导致此问题的新Configuration

导致此问题的代码:

Locale locale = new Locale(isSpanish() ? "es" : "en");
Locale.setDefault(locale);

Configuration config = new Configuration();
config.locale = locale;
context.getResources().updateConfiguration(config, context.getResources().getDisplayMetrics());

如果我将行Configuration config = new Configuration();更改为Configuration config = context.getResources().getConfiguration();,应用程序字体将根据系统字体大小更改进行缩放。

希望这可以帮助某人。