0简单UI组件
gravity
: 控制是当前视图的内容 / 子View
layout_gravity
: 控制当前视图自己
# TextVie
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="文本提示" // 文本提示
android:inputType="text"/> //指定输入类型
1
2
3
4
5
2
3
4
5
# Button
Button是TextView的子类

# ImageView
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@mipmap/ic_launcher" // 前景图片
android:src="@mipmap/ic_launcher"/> //背景图片
//设置前景图片
public void setlmageResource(int resld)
//设置背景图片
public void setBackgroundResource(int resid)
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
编辑 (opens new window)
上次更新: 2021/09/05, 15:01:20