Android TextView 设置滚动条(纯xml)

<ScrollView
android:id="@+is/scrollView_id"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:fillViewport="true"
android:scrollbars="vertical" >

<TextView
android:id="@+id/outputText"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />

<!--
<TextView
android:id="@+id/outputText"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1.0" />
-->
</ScrollView>

原文地址:https://www.cnblogs.com/syxxlove/p/3505963.html