3

我的 ScrollView 布局有问题:

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

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_gravity="center_horizontal|center_vertical"
        android:id="@+id/editRelativeLayout"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/textView2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textAppearance="?android:attr/textAppearanceSmall" />

        <TextView
            android:id="@+id/typeTextView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text="Large Text"
            android:textAppearance="?android:attr/textAppearanceLarge" />

    </LinearLayout>
</ScrollView>

问题是当我在 TextView 中显示大量文本时,TextView2 消失了……知道如何解决吗?

4

4 回答 4

6

我已经解决了删除线的问题:

android:layout_gravity="center_horizontal|center_vertical"
于 2012-11-09T18:42:50.737 回答
1

当我偶然发现同样的问题时,我找到了一个解决方案,可以让您保持文本居中但避免剪切错误:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"         // Automatic ScrollView height
            android:layout_gravity="center_vertical">    // Center ScrollView vertically

        <TextView android:layout_width="fill_parent"
                  android:layout_height="wrap_content"
                  android:gravity="center_horizontal" /> // Center TextView content horizontally

</ScrollView>
于 2013-07-15T21:59:50.350 回答
0

更改为android:layout_height_LinearLayoutwrap_content

于 2012-11-09T18:38:18.327 回答
0

我知道如果您正在制作 EditText 框,则可以选择使其成为 multiLine ,这样如果它们溢出框,它将随之滚动。我相信对于 TextView 有一个类似的选项;在 android xml 创建器的属性方面,应该有一个属性可以帮助您显示而不会被切断。是的应该是wrap_content。

于 2012-11-09T19:11:19.987 回答