Android-基本XML
一 xml文件基本介绍
layout中的类的基类为View
例如一个Button类的定义,其他的类似
<Button
1 添加一个id,在R类中自动生成id(R类中的id) id在整个项目唯一
android:id="@+id/button1"
2 布局宽度
android:layout_width="wrap_content"
3 布局高度
android:layout_height="wrap_content"
4 布局的三种格式
fill_conten 填满
match_content 匹配
wrap_content 正常
5 文本信息
android:text="Button" />
时间: 2024-11-09 01:59:05