TextView内容不包装或滚动

时间:2010-08-05 14:58:08

标签: android

我有一个简单的TextView,它显示了我已经删除了网络的一些文字。尽管我想要显示的文本比屏幕的宽度长得多,但它既没有包装也没有给我一个滚动条。它就此停止。

我的布局配置如下:

    <?xml version="1.0" encoding="utf-8"?>
<TextView  xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/displayFighterVerse"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:singleLine="false"
    android:width="0dip"
    android:inputType="textMultiLine"
    android:text="Welcome to Fighter Verses. Please wait while we download the latest verse."
    />

任何人都可以帮我弄清楚为什么显示不正确吗?我错过了什么非常简单的事情?

3 个答案:

答案 0 :(得分:1)

取一个Editetext代替.. 将背景颜色设置为透明 和setEditable为false 它将换行以及滚动,看起来像textView

答案 1 :(得分:0)

将TextView放在ScrollView

答案 2 :(得分:0)

将TextView放在ScrollView内的LinearLayout中。