0

这是代码;

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/bghome" >

    <TableRow>

        <TextView
            android:id="@+id/TextTitle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginBottom="10dp"
            android:layout_marginTop="10dp"
            android:gravity="center"
            android:text="Wrocław"
            android:textColor="#FFFFFF"
            android:textSize="20dp" />
    </TableRow>

    <TableRow>

        <ScrollView
            android:layout_width="fill_parent"
            android:layout_height="400dp"
            android:layout_marginLeft="10dp" >

            <TextView
                android:id="@+id/TextMain"
                android:layout_width="300dp"
                android:layout_height="400dp"
                android:layout_gravity="center_vertical|right"
                android:text="Ładowanie danych..." >
            </TextView>
        </ScrollView>
    </TableRow>

</TableLayout>

现在。当我在 TextView (可滚动视图内)中放置很长的文本时。我得到失真问题。文本的顶部被削减。(目标是创建一个标题,并在其下方为来自 serwer 的 html 文本创建一个可滚动容器 - 一个 html 代码)。

Id 无关紧要,是我将 html 字符串放在纯字符串上,还是从服务器获取数据或对其进行硬编码。我尝试了所有组合,但我无法破解它。

MainText.setText(Html.fromHtml(Plain_str));
MainText.setText(Plain_str);
MainText.setText(Plain_str.toString());

没有什么帮助。

4

2 回答 2

1

问题出在这一行: android:layout_gravity="center_vertical|right"

于 2012-11-05T14:42:42.037 回答
0

我可能误解了这个问题,但是您是否尝试过将TableRow高度设置为400dpand 然后match_parentScrollViewand TextView?在我做出改变之前,我对这个布局高度有疑问,然后看起来一切正常。

像这样的东西:

<TableRow
    android:layout_width="match_parent"
    android:layout_height="400dp" >

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginLeft="10dp" >

        <TextView
            android:id="@+id/TextMain"
            android:layout_width="300dp"
            android:layout_height="match_parent"
            android:layout_gravity="center_vertical|right"
            android:text="this is very long text that is going in a textview wrapped by a scrollview. I want to see how the text is displayed when wrapped. this is very long text that is going in a textview wrapped by a scrollview. I want to see how the text is displayed when wrapped." >
        </TextView>
    </ScrollView>

</TableRow>
于 2012-11-05T14:41:46.437 回答