ActionBarCompat Title被随机截断 - 没有ellipsize,只是切断了这个词

时间:2013-11-12 10:32:59

标签: android android-actionbar-compat

以下是应用程序操作栏标题被截断的示例:

The 2 first ones are truncated, the 2 below are what I have 95% times

这是随机发生的,我仍然不知道是什么原因导致它突然被截断。大多数时候,我没有问题,但它发生了。它没有引起任何错误。

我在我的活动的onCreate()方法中要求2行宽(就像这样(但我不知道它是如何相关的):

//Set the title over 2 lines if needed:
    int titleId = Resources.getSystem()
            .getIdentifier("action_bar_title", "id", "android");
    if (titleId > 0) {
        TextView title = (TextView) findViewById(titleId);
        title.setSingleLine(false);
        title.setMaxLines(2);
        //          title.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 16);
    }

有什么想法吗?谢谢!

0 个答案:

没有答案