今天写程序时,在一个页面里写了太多的东西,结果后面的东西都看不见了。我知道要用滚动条,但是不知道怎么加,翻翻书也没找到,于是就上网查查,结果还真管用。最简单的方法就是在缩写的java文件对应的XML文件的头尾加上</ScrollView>
就像这样
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scrollbars="none"><LinearLayout
android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical">在这里面写你的textView等等
</LinearLayout>
</ScrollView>
Android 滚动条
最新推荐文章于 2024-09-29 11:26:34 发布