how to do text wrapping for long text in text view on android
I think setting the following properties to your TextView should help you to achieve this behavior:
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:ellipsize="none"
android:singleLine="false"