单词自动换行

时间:2016-04-03 15:38:21

标签: android android-layout android-scrollview

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

<ScrollView
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:fillViewport="true"
    >

    <HorizontalScrollView
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        android:fillViewport="true"
        >

        <EditText
            android:layout_height="fill_parent"
            android:layout_width="fill_parent"
            android:gravity="top|left"
            android:paddingLeft="30dp"
            android:background="@null"
            />

    </HorizontalScrollView>

</ScrollView>

当我输入超过屏幕宽度的单词时,单词会换行为2行。隐藏软键盘后,他们改为一行。这是'android:fillViewport'还是其他什么问题?

0 个答案:

没有答案
相关问题