一.view视图
1.TextView(文本视图)
<TextView
android:text="Happy day"
android:layout_width="wrap_content"
android:layout_height="wrap_content"//wrap_content的优点:使视图大小与内容的大小切合。
/>
文字大小:
<TextView
android:textsize:"number tsp"
/>
颜色:
<TextView
android:textcolor="代码”
/>
2.ImageView(图片视图)
<ImageView
android:src="@drawable/ocean"//指的是draw文件夹下名为ocean的图片
android:layout_width="400dp"
android:layout_height="600dp"
android:scale Type="center"//scale Type可以使图片根据屏幕的大小改变显示的尺寸
//center只使图片居中显示centercrop:缩小图片满足宽高要求
/>