一、基础View控件
View类的常见XML属性,对应发放及说明
每个界面控件都需要设置Android:layout_height,Android:layout_width,指定控件的高度和宽度。通常有三种取值
android:layout_width="wrap_content"表示控件的宽(用height则为高)恰好包裹内容,随着内容变化而变化。
android:layout_width="fill_parent"表示控件的宽(用height则为高)与其父容器的宽相同。
android:layout_width="match_parent"与fill_parent相同,不过推荐用这个。
二、文本显示框TetView
时间: 2024-10-11 13:09:48