您的位置:首页 > 移动开发 > Android开发

Android TextView 设置滚动条(纯xml)

2014-01-05 15:59 555 查看
<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>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: