卜若的代码笔记-android开发系列-UI系列-第三章:TextView与滚动条(用于显示超出文本框范围的数据)

 <ScrollView
             android:layout_width="match_parent"
             android:layout_height="match_parent"
             >
             <TextView
                 android:id="@+id/console"
                 android:layout_width="match_parent"
                 android:layout_height="match_parent"

                 android:text="欢迎使用"
                 android:textSize="25dp"
                 />

</ScrollView>

猜你喜欢

转载自blog.csdn.net/qq_37080133/article/details/84725779