1

我的应用程序中的布局是使用 SDK 16 构建的,我已经测试并确认它们在 ICS 和 JB 上运行良好,但 GB 存在以下问题:

在下面的代码中,我只是想创建一个只有文本的简单布局。但是,在第一行末尾的 Gingerbread 上,文本一直被截断,而不是继续到下一行。我试过将singeLine设置为false,玩弄线条、maxLines、marquee、layoutWeight,将layoutHeight和layoutWidth更改为每个可以想象的组合等等。这个问题真的让我很困惑。

代码:-

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical">

<TextView
    android:id="@+id/textView7"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Text keeps overflowing"
    android:textAppearance="?android:attr/textAppearanceMedium"
    android:textColor="#33B5E5"
    android:paddingTop="6dp"
    />

<TextView
    android:id="@+id/textView8"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Text gets cut off when I input a long string like this one"
    android:textAppearance="?android:attr/textAppearanceMedium"
    android:textColor="#FFFFFF"
    />

</LinearLayout>

</ScrollView>

此外,如果我将布局的主题更改为 Gingerbread,我会收到错误消息:

Failed to find style 'scrollViewStyle' in current theme
Failed to find style 'textViewStyle' in current theme
android.content.res.Resources$NotFoundException

提前致谢。

4

1 回答 1

2

自己修好了。无法找出它发生的原因,但我通过在 TextViews 的代码中添加以下几行来修复它:-

        android:ellipsize="none"
        android:maxLines="10"
        android:scrollHorizontally="false"
于 2012-10-14T18:21:33.097 回答