26中引发ArrayIndexOutOfBoundsExcept

26中引发ArrayIndexOutOfBoundsExcept

本文介绍了在主题中使用fontFamily属性时,Toast会在appcompat v26中引发ArrayIndexOutOfBoundsException的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

每当我显示Toast时,应用程序就会崩溃.

Whenever I show a Toast, the app crashes.

如果我使用旧版本的AppCompat库或从样式中删除fontFamily,则该应用程序运行良好.

The app works fine if I use older version of AppCompat library or remove fontFamily from the style.

在创建时:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Toast.makeText(this, "Test", Toast.LENGTH_SHORT).show(); //line 13
}

依赖性:

compile 'com.android.support:appcompat-v7:26.1.0'

应用主题:

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
    <item name="android:fontFamily">sans-serif-light</item>
</style>

堆栈跟踪:

是否有其他选择,以便可以使用最新版本的AppCompat库在主题中使用fontFamily属性?

Is there any alternative so that I can use the fontFamily attribute in theme using the latest version of AppCompat library?

推荐答案

在主题中添加字体,如下所示-

Add font in Theme like below-

    <style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
        <item name="android:textViewStyle">@style/TextViewStyle</item>
        <item name="android:buttonStyle">@style/ButtonStyle</item>
    </style>

    <style name="TextViewStyle" parent="android:Widget.TextView">
        <item name="android:fontFamily">sans-serif-light</item>
    </style>

    <style name="ButtonStyle" parent="Widget.AppCompat.Button">
        <item name="android:fontFamily">sans-serif-light</item>
    </style>

这篇关于在主题中使用fontFamily属性时,Toast会在appcompat v26中引发ArrayIndexOutOfBoundsException的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-26 23:16