There may be several workouts in your problem.
Try using any of these attributes on TextView:
android:layout_weight=1android:width="0dip"android:ellipsize="none"android:scrollHorizontally="false"
To view the scroll you can try:
<ScrollView android:id="@+id/SCROLL_VIEW"
android:layout_height="fill_parent"
android:layout_width="fill_parent">
<TextView
android:id="@+id/TEXT_VIEW"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Here goes your text" />
</ScrollView>
TextView . , , .