汉字之所以伟大是因为它更接近于图片。就是说人的大脑,包括其他动物的大脑能从更大的视域上完成信息的输入、处理和输出。而计算机只能处理0和1。英文则介于机器语言与视觉感知的中间。
<ImageView
android:id="@+id/photo_image_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/mountains" />

ImageView
其实没有这么简单,但是也没有那么困难。俗话说师父领进门修行在个人,当你学会了之前的这些内容,你就需要能够自己寻求帮助,来掌握更多的内容。
我们需要使用developer.android.com来获取开发文档。

Paste_Image.png

textSize
UI的各种视图,借助分组来优化UI,给用户带来视觉体验的满意度。
A ViewGroup
is a special view that can contain other views (called children.) The view group is the base class for layouts and views containers. This class also defines the ViewGroup.LayoutParams class which serves as the base class for layouts parameters.