I have a simple TextView that displays some text that I've scraped of the web. Despite the fact that the text I want to display is much longer than the width of the screen, it neither wraps nor gives me a scroll bar. It just stops.
My layout is configured as follows:
<?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."
/>
Can anyone help me figure out why this isn't displaying properly? What really simple thing am I missing?