漢字之所以偉大是因為它更接近于圖片。就是說人的大腦,包括其他動物的大腦能從更大的視域上完成信息的輸入、處理和輸出。而計算機只能處理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.